tree-sitter/.vimrc

11 lines
394 B
VimL
Raw Normal View History

2013-11-05 22:15:19 -08:00
set wildignore+=spec/externals
set wildignore+=TreeSitter.xcodeproj/*
set shiftwidth=4
set softtabstop=4
set tabstop=4
let g:syntastic_cpp_compiler = 'clang'
let g:syntastic_cpp_auto_refresh_includes = 1
let g:syntastic_cpp_include_dirs = [ './core/include', './spec/externals/igloo', './spec', './src' ]
let g:syntastic_cpp_compiler_options = '-std=gnu99 -fnested-functions -DRUBY_MISSING_H'