Ensure vim.lsp.hover has a rounded border

This commit is contained in:
Kenneth Benzie 2025-08-19 16:58:21 +01:00
parent 595c45724d
commit 53ad787167

View File

@ -40,6 +40,9 @@ vim.opt.completeopt = 'menu'
-- Set window title to titlestring -- Set window title to titlestring
vim.opt.title = true vim.opt.title = true
-- Use rounded borders for floating windows
vim.o.winborder = 'rounded'
-- Don't show mode in command line -- Don't show mode in command line
vim.opt.showmode = false vim.opt.showmode = false