mirror of
https://github.com/pojokcodeid/nvim-lazy.git
synced 2025-06-21 16:39:04 +02:00
add: border rounded on lspinfo
This commit is contained in:
parent
377c23c156
commit
e59e8dba26
2 changed files with 9 additions and 0 deletions
|
@ -268,6 +268,7 @@ return {
|
||||||
BufferLineFill = { bg = colors.bg },
|
BufferLineFill = { bg = colors.bg },
|
||||||
Pmenu = { fg = colors.fg, bg = colors.bg },
|
Pmenu = { fg = colors.fg, bg = colors.bg },
|
||||||
WinBarNC = { fg = colors.fg, bg = colors.bg },
|
WinBarNC = { fg = colors.fg, bg = colors.bg },
|
||||||
|
LspInfoBorder = { fg = colors.fg },
|
||||||
},
|
},
|
||||||
transparent_bg = transparent,
|
transparent_bg = transparent,
|
||||||
-- transparent_bg = is_transparent,
|
-- transparent_bg = is_transparent,
|
||||||
|
|
|
@ -3,6 +3,14 @@ return {
|
||||||
"neovim/nvim-lspconfig",
|
"neovim/nvim-lspconfig",
|
||||||
lazy = true,
|
lazy = true,
|
||||||
event = "BufRead",
|
event = "BufRead",
|
||||||
|
cmd = {
|
||||||
|
"LspInfo",
|
||||||
|
"LspInstall",
|
||||||
|
"LspUninstall",
|
||||||
|
},
|
||||||
|
config = function()
|
||||||
|
require("lspconfig.ui.windows").default_options.border = "rounded"
|
||||||
|
end,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"williamboman/mason.nvim",
|
"williamboman/mason.nvim",
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue