added mason.nvim
This commit is contained in:
parent
40475c7dbc
commit
194c9e31ca
@ -71,6 +71,11 @@ Plug 'liquidz/vim-iced-coc-source', {'for': 'clojure'}
|
|||||||
" todo.txt
|
" todo.txt
|
||||||
Plug 'freitass/todo.txt-vim'
|
Plug 'freitass/todo.txt-vim'
|
||||||
|
|
||||||
|
" LSP
|
||||||
|
Plug 'williamboman/mason.nvim'
|
||||||
|
Plug 'williamboman/mason-lspconfig.nvim'
|
||||||
|
Plug 'neovim/nvim-lspconfig', {'branch': 'v0.1.6'}
|
||||||
|
|
||||||
call plug#end()
|
call plug#end()
|
||||||
|
|
||||||
|
|
||||||
@ -126,6 +131,13 @@ set hidden
|
|||||||
|
|
||||||
let g:loaded_perl_provider = 0
|
let g:loaded_perl_provider = 0
|
||||||
|
|
||||||
|
" LSP Config
|
||||||
|
|
||||||
|
lua << EOF
|
||||||
|
require("mason").setup()
|
||||||
|
require("mason-lspconfig").setup()
|
||||||
|
EOF
|
||||||
|
|
||||||
" Use <C-L> to clear the highlighting of :set hlsearch.
|
" Use <C-L> to clear the highlighting of :set hlsearch.
|
||||||
if maparg('<C-L>', 'n') ==# ''
|
if maparg('<C-L>', 'n') ==# ''
|
||||||
nnoremap <silent> <C-L> :nohlsearch<CR><C-L>
|
nnoremap <silent> <C-L> :nohlsearch<CR><C-L>
|
||||||
|
Loading…
Reference in New Issue
Block a user