From 2c479eb08e9950b07704b40d2403951e8ba86c11 Mon Sep 17 00:00:00 2001 From: Mathieu Maret Date: Thu, 6 Apr 2017 21:37:35 +0200 Subject: [PATCH] [vim] remove pyflakes-vim as it's merged in syntastic and use nasm ft for asm file --- .vimrc | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.vimrc b/.vimrc index 1fa4893..0822eb7 100644 --- a/.vimrc +++ b/.vimrc @@ -168,6 +168,9 @@ if has("autocmd") autocmd BufRead,BufNewFile *.ino set shiftwidth=4 endif +if has("autocmd") + au BufRead,BufNewFile *.asm set ft=nasm +endif " vim -b : edit binary using xxd-format! augroup Binary au! @@ -525,8 +528,6 @@ Plugin 'scrooloose/nerdtree' "Plugin 'scrooloose/syntastic' "Plugin 'majutsushi/tagbar' "Plugin 'Yggdroot/indentLine' -"" Python Code Checking -"Plugin 'kevinw/pyflakes-vim' " Omni completion for cpp Plugin 'vim-scripts/OmniCppComplete'