Better support for C++

This commit is contained in:
Thomas Forgione 2019-06-21 11:13:17 +02:00
parent ed841d25f0
commit 36140e4265
No known key found for this signature in database
GPG Key ID: 203DAEA747F48F41
1 changed files with 4 additions and 0 deletions

View File

@ -21,6 +21,9 @@ Plug 'tpope/vim-abolish'
" Language specific plugins
" C++
Plug 'Shougo/deoplete-clangx'
" Rust
Plug 'rust-lang/rust.vim'
Plug 'racer-rust/vim-racer'
@ -168,6 +171,7 @@ inoremap <expr><TAB> pumvisible() ? "\<C-n>" : "\<TAB>"
" CUSTOM THINGS DEPENDING ON ENV ####################################{{{
let g:ale_linters = {}
let g:ale_c_parse_compile_commands=1
let g:ale_elm_ls_use_global = 1
let g:ale_linters_ignore = { 'elm': ['make'] }
let g:ale_lint_on_text_changed = 0