diff options
| author | Ibrahim Muftee <ibrahim@muftee.net> | 2025-06-23 20:44:20 -0500 |
|---|---|---|
| committer | Ibrahim Muftee <ibrahim@muftee.net> | 2026-07-01 00:23:31 -0400 |
| commit | cd96aedafa3be65084efb276f05aa089261fbb64 (patch) | |
| tree | 30f3cd9d7488d7f4ba8167d0ee9ad4df4db324fb /dot_config/nvim/lua | |
| parent | 7759c640a0bc4ea04b6e8241a947de28f7ac93ce (diff) | |
fix(nvim): update lsp border setup
Diffstat (limited to 'dot_config/nvim/lua')
| -rw-r--r-- | dot_config/nvim/lua/plugins/lsp.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dot_config/nvim/lua/plugins/lsp.lua b/dot_config/nvim/lua/plugins/lsp.lua index 8ed54a3..f74243e 100644 --- a/dot_config/nvim/lua/plugins/lsp.lua +++ b/dot_config/nvim/lua/plugins/lsp.lua @@ -159,8 +159,8 @@ return { } local border_handlers = { - ["textDocument/hover"] = vim.lsp.with(vim.lsp.handlers.hover, { border = border }), - ["textDocument/signatureHelp"] = vim.lsp.with(vim.lsp.handlers.signature_help, { border = border }), + ["textDocument/hover"] = vim.lsp.buf.hover({ border = border }), + ["textDocument/signatureHelp"] = vim.lsp.buf.signature_help({ border = border }) } require("mason-lspconfig").setup({ |
