dotvim/vimrc

10 lines
186 B
VimL
Raw Normal View History

2015-10-30 13:43:55 +00:00
set sts=4 sw=4 et
2015-11-03 12:27:52 +00:00
if &shell =~# 'fish$'
set shell=/bin/sh
endif
2015-10-30 13:43:55 +00:00
runtime bundle/vim-pathogen/autoload/pathogen.vim
execute pathogen#infect()
2015-10-30 13:55:53 +00:00
autocmd BufWritePost *.py call Flake8()