feat: set winborder

This commit is contained in:
2025-11-15 08:23:47 +01:00
parent 9740df6526
commit 63fd755940
3 changed files with 4 additions and 7 deletions
+2 -5
View File
@@ -38,17 +38,14 @@ local function set_keymaps(bufnr)
mode = "n",
lhs = "K",
rhs = function()
vim.lsp.buf.hover({ border = "rounded", max_width = 80 })
vim.lsp.buf.hover({ max_width = 80 })
end,
},
{
mode = { "i", "s" },
lhs = "<C-s>",
rhs = function()
vim.lsp.buf.signature_help({
border = "rounded",
max_width = 80,
})
vim.lsp.buf.signature_help({ max_width = 80 })
end,
},
{