From 64caa653088cf9e162659e680a97b3cb395066ac Mon Sep 17 00:00:00 2001 From: Matthew Dillon Date: Sat, 27 May 2017 14:18:11 -0700 Subject: [PATCH] ENH: vim flake8, tab-complete, fzf --- vimrc | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/vimrc b/vimrc index f908506..dbe9207 100644 --- a/vimrc +++ b/vimrc @@ -15,6 +15,8 @@ call plug#begin() Plug 'ntpeters/vim-better-whitespace' " Mustache/handlebars support Plug 'mustache/vim-mustache-handlebars' + " Insert-mode tab completion + Plug 'ervandew/supertab' call plug#end() set t_Co=256 @@ -168,3 +170,11 @@ nmap l :bnext " cycle to previous buffer nmap h :bprevious + +set rtp+=/usr/local/opt/fzf + +" flake8 config +let g:flake8_show_in_gutter = 1 +let g:flake8_error_marker = 'EE' +let g:flake8_warning_marker = 'WW' +autocmd BufWritePost *.py call Flake8()