Skip to content

Instantly share code, notes, and snippets.

@n1lux
Last active October 28, 2016 19:55
Show Gist options
  • Save n1lux/73ca9f110b4104a10beb5a91f5053781 to your computer and use it in GitHub Desktop.
Save n1lux/73ca9f110b4104a10beb5a91f5053781 to your computer and use it in GitHub Desktop.
Basic vimrc for python
filetype plugin indent on
set encoding=utf8
set paste
set expandtab
set textwidth=0
set tabstop=4
set softtabstop=4
set shiftwidth=4
set autoindent
set backspace=indent,eol,start
set incsearch
set ignorecase
set ruler
set wildmenu
set commentstring=\ #\ %s
set foldlevel=0
set clipboard+=unnamed
syntax on
set number
let python_highlight_all=1
"set cursorline
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment