diff --git a/.vimrc b/.vimrc index 39619e9..e96e340 100644 --- a/.vimrc +++ b/.vimrc @@ -1,6 +1,8 @@ set nocompatible syntax on filetype plugin on +set autoread " Set to auto read when a file is changed from the outside +set omnifunc=syntaxcomplete#Complete set path+=** set wildmenu @@ -46,4 +48,11 @@ au FileType * \ autoindent \ smartindent - +"Python Specific Config +au FileType python +\ set fileformat=unix +\ tabstop=4 +\ softtabstop=4 +\ shiftwidth=4 +\ encoding=utf-8 +\ makeprg=flake8\ %