mirror of
https://github.com/gryf/.vim.git
synced 2025-12-17 11:30:29 +01:00
Added ColorColumn definition to wombat256grf colorscheme Added definition of ColorColumn for python filetype Downgrade pyflakes, because I don't want to have the errors in QF Wrapped substitutions with try: except blok in reST function blogify() Updated GetLatestVimScripts data file Updated plugins: vimwiki and vcscommand Removed pythoncomplete.vim since it is the same as the default form vim Removed colorschemes: lettuce and wombat256
29 lines
620 B
VimL
29 lines
620 B
VimL
set cinkeys-=0#
|
|
set expandtab
|
|
set foldlevel=100
|
|
set foldmethod=indent
|
|
set indentkeys-=0#
|
|
set list
|
|
set noautoindent
|
|
set shiftwidth=4
|
|
set smartindent cinwords=if,elif,else,for,while,try,except,finally,def,class,with
|
|
set smarttab
|
|
set softtabstop=4
|
|
set tabstop=4
|
|
set textwidth=78
|
|
set colorcolumn=+1
|
|
|
|
inoremap # X<BS>#
|
|
|
|
"set ofu=syntaxcomplete#Complete
|
|
|
|
let g:pylint_onwrite = 0 " I don't want to run pylint on every save
|
|
compiler pylint
|
|
|
|
"autocmd FileType python setlocal omnifunc=pysmell#Complete
|
|
let python_highlight_all=1
|
|
|
|
"Load views for py files
|
|
autocmd BufWinLeave *.py mkview
|
|
autocmd BufWinEnter *.py silent loadview
|