blob: 61bea51b9c7772f7e44eb387286ebeeeb05952b2 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
function! nvim_lsp#setup(name, config)
return luaeval("require'nvim_lsp'[_A[1]].setup(_A[2])", [a:name, a:config])
endfunction
" function! nvim_lsp#texlab(config)
" call nvim_lsp#setup("texlab", a:config)
" endfunction
" function! nvim_lsp#gopls(config)
" call nvim_lsp#setup("gopls", a:config)
" endfunction
|