Adds elmls
This commit is contained in:
parent
642b00f1e1
commit
55b66031e0
3
init.vim
3
init.vim
|
@ -12,6 +12,7 @@ else
|
||||||
endif
|
endif
|
||||||
Plug 'sebastianmarkow/deoplete-rust'
|
Plug 'sebastianmarkow/deoplete-rust'
|
||||||
Plug 'ElmCast/elm-vim'
|
Plug 'ElmCast/elm-vim'
|
||||||
|
Plug 'antew/vim-elm-language-server'
|
||||||
Plug 'cespare/vim-toml'
|
Plug 'cespare/vim-toml'
|
||||||
Plug 'https://gitea.tforgione.fr/tforgione/peach.git'
|
Plug 'https://gitea.tforgione.fr/tforgione/peach.git'
|
||||||
Plug 'vim-airline/vim-airline'
|
Plug 'vim-airline/vim-airline'
|
||||||
|
@ -152,6 +153,8 @@ inoremap <expr><TAB> pumvisible() ? "\<C-n>" : "\<TAB>"
|
||||||
|
|
||||||
" CUSTOM THINGS DEPENDING ON ENV ####################################{{{
|
" CUSTOM THINGS DEPENDING ON ENV ####################################{{{
|
||||||
let g:ale_linters = {}
|
let g:ale_linters = {}
|
||||||
|
let g:ale_elm_ls_use_global = 1
|
||||||
|
let g:ale_linters_ignore = { 'elm': ['make'] }
|
||||||
let g:ale_lint_on_text_changed = 0
|
let g:ale_lint_on_text_changed = 0
|
||||||
if $NVIM_DISABLE_PYTHON_LINTER == '1'
|
if $NVIM_DISABLE_PYTHON_LINTER == '1'
|
||||||
let g:ale_linters.python = []
|
let g:ale_linters.python = []
|
||||||
|
|
Loading…
Reference in New Issue