diff options
author | Oxbian <got.dacs@slmail.me> | 2023-06-30 14:24:43 +0200 |
---|---|---|
committer | Oxbian <got.dacs@slmail.me> | 2023-06-30 14:24:43 +0200 |
commit | 8b3a4051b31e50c2ccc7c52db95e87f40ccc675a (patch) | |
tree | c33295f82fd73a2223f83f223159db6563f83b26 /.vim | |
parent | 70a1687c7487bbe7397d1db71e04f4cb2380fc27 (diff) | |
download | vimrc-8b3a4051b31e50c2ccc7c52db95e87f40ccc675a.tar.gz vimrc-8b3a4051b31e50c2ccc7c52db95e87f40ccc675a.zip |
Updating lsp to use ALE
Diffstat (limited to '.vim')
-rw-r--r-- | .vim/plugins.vim | 37 |
1 files changed, 4 insertions, 33 deletions
diff --git a/.vim/plugins.vim b/.vim/plugins.vim index e7e9f6e..8bf05eb 100644 --- a/.vim/plugins.vim +++ b/.vim/plugins.vim @@ -25,10 +25,9 @@ Plug 'tiagofumo/vim-nerdtree-syntax-highlight' " Syntax in nerdtree for files ex Plug 'airblade/vim-gitgutter' " Git diff " Autocompletion, linter, syntax -Plug 'prabirshrestha/vim-lsp' -Plug 'mattn/vim-lsp-settings' -Plug 'prabirshrestha/asyncomplete.vim' -Plug 'prabirshrestha/asyncomplete-lsp.vim' +Plug 'dense-analysis/ale' " Swiss-knife for all this +Plug 'prabirshrestha/asyncomplete.vim' " Autocompletion +Plug 'andreypopp/asyncomplete-ale.vim' " Autocompletion with ale call plug#end() @@ -87,35 +86,7 @@ let g:ale_set_loclist = 0 let g:ale_set_signs = 1 let g:ale_set_highlights = 1 -let g:ale_completion_enabled = 1 -let g:ale_completion_symbols = { -\ 'text': '', -\ 'method': '', -\ 'function': '', -\ 'constructor': '', -\ 'field': '', -\ 'variable': '', -\ 'class': '', -\ 'interface': '', -\ 'module': '', -\ 'property': '', -\ 'unit': 'unit', -\ 'value': 'val', -\ 'enum': '', -\ 'keyword': 'keyword', -\ 'snippet': '', -\ 'color': 'color', -\ 'file': '', -\ 'reference': 'ref', -\ 'folder': '', -\ 'enum member': '', -\ 'constant': '', -\ 'struct': '', -\ 'event': 'event', -\ 'operator': '', -\ 'type_parameter': 'type param', -\ '<default>': 'v' -\ } +let g:ale_completion_enabled = 0 " NerdTree let NERDTreeShowHidden=1 " Show hidden files |