Skip to content

Instantly share code, notes, and snippets.

@SavinaRoja
Created September 8, 2015 18:10
Show Gist options
  • Save SavinaRoja/458adc0da341ca942a46 to your computer and use it in GitHub Desktop.
Save SavinaRoja/458adc0da341ca942a46 to your computer and use it in GitHub Desktop.
.vimrc for python
" A good writeup of the .vimrc is here:
" http://dougblack.io/words/a-good-vimrc.html
syntax on
colorscheme badwolf
" Tab Handling
set tabstop=4
set softtabstop=4
set expandtab
" Show line numbers
set number
" Show command in bottom bar
set showcmd
" Highlight the current line
set cursorline
" Load filetype specific indentation rules
" ~/.vim/indent/python.vim would load for *.py
" filetype indent on
" Visual autocomplete for command menu
set wildmenu
" Redraw only when necessary, speeds up macros
set lazyredraw
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment