From 8b3a4051b31e50c2ccc7c52db95e87f40ccc675a Mon Sep 17 00:00:00 2001 From: Oxbian Date: Fri, 30 Jun 2023 14:24:43 +0200 Subject: Updating lsp to use ALE --- .vim/plugins.vim | 37 ++++--------------------------------- 1 file changed, 4 insertions(+), 33 deletions(-) (limited to '.vim') 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', -\ '': 'v' -\ } +let g:ale_completion_enabled = 0 " NerdTree let NERDTreeShowHidden=1 " Show hidden files -- cgit v1.2.3