Merge branch 'master' of git.epichack.com:barak/dotfiles

This commit is contained in:
Barak Michener 2014-07-27 14:30:41 -04:00
commit d22b5d1aeb
3 changed files with 10 additions and 2 deletions

5
.vimrc
View file

@ -171,6 +171,11 @@ let g:UseGooglePythonSettings = 0
" * Eclim
let g:EclimCompletionMethod = 'omnifunc'
" * Syntastic
let g:syntastic_python_flake8_args='--ignore=E111'
let g:syntastic_go_checkers=['go', 'govet', 'golintc']
" E111 = Spaces should be multiples of 4. I use 2.
" * Configure browser for haskell_doc.vim
let g:haddock_browser = "open"
let g:haddock_browser_callformat = "%s %s"