refactor(lsp): rename sumneko provider file
This commit is contained in:
parent
f562882989
commit
74a287d897
2 changed files with 2 additions and 1 deletions
|
@ -56,7 +56,7 @@ lsp_installer.on_server_ready(function(server)
|
|||
if server.name == 'tsserver' then
|
||||
opts = vim.tbl_deep_extend('force', opts, require('cosmic.lsp.providers.tsserver'))
|
||||
elseif server.name == 'sumneko_lua' then
|
||||
opts = vim.tbl_deep_extend('force', opts, require('cosmic.lsp.providers.lua'))
|
||||
opts = vim.tbl_deep_extend('force', opts, require('cosmic.lsp.providers.sumneko_lua'))
|
||||
end
|
||||
|
||||
-- override options if user definds them
|
||||
|
|
|
@ -10,6 +10,7 @@ return {
|
|||
library = {
|
||||
[vim.fn.expand('$VIMRUNTIME/lua')] = true,
|
||||
[vim.fn.expand('$VIMRUNTIME/lua/vim/lsp')] = true,
|
||||
[vim.fn.stdpath('config') .. '/lua'] = true,
|
||||
},
|
||||
maxPreload = 10000,
|
||||
},
|
Loading…
Add table
Reference in a new issue