add: border rounded on lspinfo

This commit is contained in:
asep.komarudin 2024-05-21 15:01:19 +07:00
parent 377c23c156
commit e59e8dba26
2 changed files with 9 additions and 0 deletions

View file

@ -268,6 +268,7 @@ return {
BufferLineFill = { bg = colors.bg },
Pmenu = { fg = colors.fg, bg = colors.bg },
WinBarNC = { fg = colors.fg, bg = colors.bg },
LspInfoBorder = { fg = colors.fg },
},
transparent_bg = transparent,
-- transparent_bg = is_transparent,

View file

@ -3,6 +3,14 @@ return {
"neovim/nvim-lspconfig",
lazy = true,
event = "BufRead",
cmd = {
"LspInfo",
"LspInstall",
"LspUninstall",
},
config = function()
require("lspconfig.ui.windows").default_options.border = "rounded"
end,
},
{
"williamboman/mason.nvim",