Skip to content

Instantly share code, notes, and snippets.

@gnrfan
Created August 18, 2012 21:42
Show Gist options
  • Select an option

  • Save gnrfan/3390050 to your computer and use it in GitHub Desktop.

Select an option

Save gnrfan/3390050 to your computer and use it in GitHub Desktop.
VIM rc file by gnrfan
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