updated lsp config

This commit is contained in:
Saeed Afzal
2023-04-29 16:17:55 +01:00
parent 86cc9b52ec
commit 1d3df81f8f
6 changed files with 196 additions and 6 deletions

View File

@@ -6,7 +6,17 @@ return {
"MunifTanjim/nui.nvim"
},
cmd = "Neotree",
init = function() vim.g.neo_tree_remove_legacy_commands = true end,
init = function()
vim.g.neo_tree_remove_legacy_commands = true
vim.fn.sign_define("DiagnosticSignError",
{text = "", texthl = "DiagnosticSignError"})
vim.fn.sign_define("DiagnosticSignWarn",
{text = "", texthl = "DiagnosticSignWarn"})
vim.fn.sign_define("DiagnosticSignInfo",
{text = "", texthl = "DiagnosticSignInfo"})
vim.fn.sign_define("DiagnosticSignHint",
{text = "", texthl = "DiagnosticSignHint"})
end,
opts = {
close_if_last_window = true,