summaryrefslogtreecommitdiff
path: root/_vimrc_local.vim
blob: 78f02f758800e2403bc1dff0e637fbaccf992de4 (plain)
1
2
3
4
5
6
7
8
9
if (&ft=='c' || &ft=='h' || &ft=='cpp')
  setlocal shiftwidth=4
  setlocal tabstop=4
  setlocal expandtab
endif

" Neomake c include
let g:neomake_c_enabled_makers = ['gcc']
let g:neomake_c_gcc_maker = {'args': ['-fsyntax-only', '-Wall', '-Wextra', '-I../include/', '-I./include/']}