summaryrefslogtreecommitdiff
path: root/lua/lvim/lsp
diff options
context:
space:
mode:
authorChristian Chiarulli <[email protected]>2022-09-19 13:12:52 -0400
committerGitHub <[email protected]>2022-09-19 13:12:52 -0400
commit352147158bb696e4b8fcb236d2cb477955b26dcf (patch)
treecf787c1d9ada73fe047368addccc493d9cf2cde5 /lua/lvim/lsp
parentd44da34e92f92bbe59d2fca5965aa9c35c64374c (diff)
feat(document highlight): use illuminate rather than autocommand to avoid flashing (#3029)
Diffstat (limited to 'lua/lvim/lsp')
-rw-r--r--lua/lvim/lsp/handlers.lua1
1 files changed, 0 insertions, 1 deletions
diff --git a/lua/lvim/lsp/handlers.lua b/lua/lvim/lsp/handlers.lua
index 84f2ba5f..45b1989d 100644
--- a/lua/lvim/lsp/handlers.lua
+++ b/lua/lvim/lsp/handlers.lua
@@ -12,7 +12,6 @@ function M.setup()
float = lvim.lsp.diagnostics.float,
}
vim.diagnostic.config(config)
- vim.lsp.handlers["textDocument/hover"] = vim.lsp.with(vim.lsp.handlers.hover, lvim.lsp.float)
vim.lsp.handlers["textDocument/signatureHelp"] = vim.lsp.with(vim.lsp.handlers.signature_help, lvim.lsp.float)
end