summaryrefslogtreecommitdiff
path: root/lua/lsp/handlers.lua
diff options
context:
space:
mode:
authorLuc Sinet <[email protected]>2021-07-31 16:12:29 +0200
committerGitHub <[email protected]>2021-07-31 14:12:29 +0000
commitfe5daa722fb75ad85c24936cbb645018bb9d655b (patch)
treefbba8ec7642555e29a7b611f2dfc0e5a0c107188 /lua/lsp/handlers.lua
parentcf16a2e826774e89d1bfe5812b6f73c3dd049db2 (diff)
[Feature] Expose lsp config (#1156)
Diffstat (limited to 'lua/lsp/handlers.lua')
-rw-r--r--lua/lsp/handlers.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/lsp/handlers.lua b/lua/lsp/handlers.lua
index 3a467d42..a25db3c1 100644
--- a/lua/lsp/handlers.lua
+++ b/lua/lsp/handlers.lua
@@ -5,7 +5,7 @@ local M = {}
function M.setup()
vim.lsp.handlers["textDocument/publishDiagnostics"] = vim.lsp.with(vim.lsp.diagnostic.on_publish_diagnostics, {
virtual_text = lvim.lsp.diagnostics.virtual_text,
- signs = lvim.lsp.diagnostics.signs,
+ signs = lvim.lsp.diagnostics.signs.active,
underline = lvim.lsp.document_highlight,
})