diff options
author | Matt Singleton <matt@xcolour.net> | 2022-01-13 13:06:12 -0600 |
---|---|---|
committer | Matt Singleton <matt@xcolour.net> | 2022-01-13 13:06:12 -0600 |
commit | 5fbf916882f4eb16063ea2110db365d0784a2134 (patch) | |
tree | 1b99e63c169ee2d4aa68ea2e60cb8e35ff0c5fd4 /home | |
parent | 8f35ecf5fb1da9fff035322c26bd40c98f697d65 (diff) |
lsp for vim
Diffstat (limited to 'home')
-rw-r--r-- | home/vimrc | 13 |
1 files changed, 10 insertions, 3 deletions
@@ -12,11 +12,19 @@ Plug 'airblade/vim-gitgutter' Plug 'vim-airline/vim-airline' Plug 'vim-airline/vim-airline-themes' Plug 'tpope/vim-eunuch' -Plug 'dense-analysis/ale' +"Plug 'dense-analysis/ale' Plug 'https://gitlab.com/protesilaos/tempus-themes-vim.git' +Plug 'prabirshrestha/vim-lsp' +Plug 'mattn/vim-lsp-settings' +Plug 'prabirshrestha/asyncomplete.vim' +Plug 'prabirshrestha/asyncomplete-lsp.vim' + call plug#end() +let g:lsp_diagnostics_echo_cursor = 1 +let g:asyncomplete_auto_popup = 0 + " " behavior " @@ -111,7 +119,6 @@ nnoremap <leader>fv :BufExplorerVerticalSplit<Enter> " ctrlp let g:ctrlp_map ='<leader>a' - " " visual " @@ -164,7 +171,7 @@ let g:airline_left_sep="\uE0B4" let g:airline_right_sep = "\uE0B6" " set a font for gvim/macvim -set guifont=SauceCodeProNerdFontComplete-Regular:h14 +set guifont=SauceCodeProNerdFontComplete-Medium:h14 " " local additions |