fix: change borders to rounded

This commit is contained in:
2025-05-02 23:29:12 +02:00
parent 2339658a83
commit 7de0efdc5e
4 changed files with 8 additions and 14 deletions
+2 -2
View File
@@ -52,14 +52,14 @@ function M:init(server, bufnr)
mode = { "n", "i" },
lhs = "<C-k>",
rhs = function()
vim.lsp.buf.hover({ border = "single", max_width = 80 })
vim.lsp.buf.hover({ border = "rounded", max_width = 80 })
end,
},
{
mode = { "n", "i" },
lhs = "<C-j>",
rhs = function()
vim.lsp.buf.signature_help({ border = "single", max_width = 80 })
vim.lsp.buf.signature_help({ border = "rounded", max_width = 80 })
end,
},
{