diff options
author | Juan J. Martinez <jjm@usebox.net> | 2022-02-17 13:05:42 +0000 |
---|---|---|
committer | Juan J. Martinez <jjm@usebox.net> | 2022-05-29 22:57:31 +0100 |
commit | 77cb4a8d7c3dcac52dab56f3005bde5310f74095 (patch) | |
tree | 41786dd6b8ac206d854561c1a8a8f50162e33898 /vimrc | |
parent | 4c8dbf4a790d58020977c8453392bcb34930af4c (diff) | |
download | dotnvim-77cb4a8d7c3dcac52dab56f3005bde5310f74095.tar.gz dotnvim-77cb4a8d7c3dcac52dab56f3005bde5310f74095.zip |
Using neovim lsp support (for python initialy)
Diffstat (limited to 'vimrc')
-rw-r--r-- | vimrc | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -58,13 +58,11 @@ Plug 'plasticboy/vim-markdown' Plug 'vimwiki/vimwiki' " language support -Plug 'natebosch/vim-lsc' Plug 'samsaga2/vim-z80' Plug 'tomtom/tcomment_vim' Plug 'https://tildegit.org/sloum/gemini-vim-syntax.git' Plug 'neovimhaskell/haskell-vim' -" nvim 0.5.0 or later if has('nvim-0.5') " general lua Plug 'nvim-lua/popup.nvim' @@ -81,6 +79,11 @@ if has('nvim-0.5') Plug 'hrsh7th/vim-vsnip' end +if has('nvim-0.6.1') + " lsp + Plug 'neovim/nvim-lspconfig' +end + call plug#end() " crystaline conf |