Using rouded borders for the lsp hover

This commit is contained in:
Zoe Roux
2022-04-13 11:46:35 +02:00
parent 68946a6dfe
commit 8a837123d2
@@ -14,6 +14,13 @@ M.setup = function()
vim.diagnostic.config({
virtual_text = false,
update_in_insert = true,
float = {
border = "rounded",
source = "always",
},
})
vim.lsp.handlers["textDocument/hover"] = vim.lsp.with(vim.lsp.handlers.hover, {
border = "rounded",
})
end