diff options
| author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2025-12-16 21:33:58 +0100 |
|---|---|---|
| committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2025-12-16 21:33:58 +0100 |
| commit | de520255b4897caf8888c015d179ae86738d32bc (patch) | |
| tree | 3e2e02bebba26006316b01b032e62a1b812c129e /fnl/plugins/lsp | |
| parent | 7db300fbd84619a31dc5b4fa864cd149d8b67c41 (diff) | |
Diffstat (limited to 'fnl/plugins/lsp')
| -rw-r--r-- | fnl/plugins/lsp/mason-lspconfig.fnl | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/fnl/plugins/lsp/mason-lspconfig.fnl b/fnl/plugins/lsp/mason-lspconfig.fnl index 429e948..48ea0b5 100644 --- a/fnl/plugins/lsp/mason-lspconfig.fnl +++ b/fnl/plugins/lsp/mason-lspconfig.fnl @@ -2,9 +2,8 @@ ;; setup hooks for client configurations. (local textDocument-handlers - {:textDocument/hover (vim.lsp.with vim.lsp.handlers.hover {:border :single}) - :textDocument/signatureHelp (vim.lsp.with vim.lsp.handlers.signature_help - {:border :single})}) + {:textDocument/hover (vim.lsp.with vim.lsp.handlers.hover) + :textDocument/signatureHelp (vim.lsp.with vim.lsp.handlers.signature_help)}) (λ capabilities [] (let [blink-cmp (require :blink.cmp)] |