add gitignore

This commit is contained in:
Oliver Ladner 2018-08-22 22:57:46 +02:00
commit 19a5078228
2 changed files with 5 additions and 0 deletions

2
.gitignore vendored Normal file
View file

@ -0,0 +1,2 @@
# vim
.vim/.netrwhist

3
.vimrc
View file

@ -6,6 +6,9 @@ filetype on
filetype indent plugin on filetype indent plugin on
set modeline set modeline
set tabstop=2 shiftwidth=2 expandtab
" use flake8 to ensure PEP-8 compliance for python " use flake8 to ensure PEP-8 compliance for python
source ~/.vim/bundle/flake8/ftplugin/python_flake8.vim source ~/.vim/bundle/flake8/ftplugin/python_flake8.vim
let g:flake8_builtins="_,apply" let g:flake8_builtins="_,apply"