Last active
October 28, 2016 19:55
-
-
Save n1lux/73ca9f110b4104a10beb5a91f5053781 to your computer and use it in GitHub Desktop.
Basic vimrc for python
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
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