Better support for C++
This commit is contained in:
parent
ed841d25f0
commit
36140e4265
4
init.vim
4
init.vim
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue