Created
August 18, 2012 21:42
-
-
Save gnrfan/3390050 to your computer and use it in GitHub Desktop.
VIM rc file by gnrfan
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| syntax on | |
| set tabstop=2 | |
| set shiftwidth=2 | |
| set softtabstop=2 | |
| set smarttab | |
| set expandtab | |
| set nobackup | |
| " auto indent | |
| " set ai | |
| " show line numbers | |
| " set nu | |
| " ruler | |
| syntax match Tab /\t/ | |
| hi Tab gui=underline guifg=blue ctermbg=blue | |
| set mouse=a | |
| " Python-specific settings | |
| au BufEnter,BufRead *.py set colorcolumn=80 | |
| au BufEnter,BufRead *.py set tabstop=4 | |
| au BufEnter,BufRead *.py set shiftwidth=4 | |
| au BufEnter,BufRead *.py set softtabstop=4 | |
| filetype indent on | |
| filetype on | |
| filetype plugin on |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment