From b09cfc5ad560c142b5235e0efe0e6e8b4d2a71cc Mon Sep 17 00:00:00 2001 From: Oliver Ladner Date: Tue, 21 Jan 2014 21:56:20 +0100 Subject: [PATCH] fixed absolute path to flake8 --- .vimrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.vimrc b/.vimrc index 95e5ab2..b8f9222 100644 --- a/.vimrc +++ b/.vimrc @@ -8,7 +8,7 @@ filetype indent plugin on set modeline " use flake8 to ensure PEP-8 compliance for python -source /home/oli/.vim/bundle/ftplugin/python_flake8.vim +source ~/.vim/bundle/flake8/ftplugin/python_flake8.vim let g:flake8_builtins="_,apply" autocmd FileType python map :call Flake8()