summaryrefslogtreecommitdiff
path: root/fnl/plugins/lsp/diagnostics.fnl
diff options
context:
space:
mode:
authorGustaf Rydholm <gustaf.rydholm@gmail.com>2024-02-08 12:32:56 +0100
committerGustaf Rydholm <gustaf.rydholm@gmail.com>2024-02-08 12:32:56 +0100
commitb745bfda31fe0d0e16b04004f96b207753648b21 (patch)
tree660d38626c8827ba303e9c313b74f2abd87b4512 /fnl/plugins/lsp/diagnostics.fnl
parentd4babc575017a85bfd0e5191771a2f74104c59d6 (diff)
Add noice and inc-rename
Diffstat (limited to 'fnl/plugins/lsp/diagnostics.fnl')
-rw-r--r--fnl/plugins/lsp/diagnostics.fnl7
1 files changed, 2 insertions, 5 deletions
diff --git a/fnl/plugins/lsp/diagnostics.fnl b/fnl/plugins/lsp/diagnostics.fnl
index aa1bf4d..9fbb627 100644
--- a/fnl/plugins/lsp/diagnostics.fnl
+++ b/fnl/plugins/lsp/diagnostics.fnl
@@ -26,10 +26,7 @@
(fn setup []
(configure-signs)
(vim.diagnostic.config config)
- (set vim.lsp.handlers.textDocument/hover
- (vim.lsp.with {:border :rounded :width 60}))
- (set vim.lsp.handlers.textDocument/signatureHelp
- (vim.lsp.with vim.lsp.handlers.signature_help
- {:border :rounded :width 60})))
+ (set vim.lsp.handlers.textDocument/hover false)
+ (set vim.lsp.handlers.textDocument/signatureHelp false))
{: setup}