fix(lsp): disable formatting for lsp w/user opts
This commit is contained in:
parent
2444c5d59c
commit
ba8adc56fc
1 changed files with 1 additions and 1 deletions
|
@ -62,7 +62,7 @@ lsp_installer.on_server_ready(function(server)
|
|||
-- override options if user definds them
|
||||
if type(config.lsp.servers[server.name]) == 'table' then
|
||||
if config.lsp.servers[server.name].opts ~= nil then
|
||||
opts = config.lsp.servers[server.name].opts
|
||||
opts = vim.tbl_deep_extend('force', opts, config.lsp.servers[server.name].opts)
|
||||
end
|
||||
end
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue