💄 ui(lazy.nvim): add some UI tweaks for lazy.nvim
Add a border and title to lazy.nvim plugin manager window
This commit is contained in:
+8
-1
@@ -19,7 +19,10 @@ vim.opt.rtp:prepend(vim.env.LAZY or lazypath)
|
|||||||
-- --------------------------------- PLUGINS -----------------------------------
|
-- --------------------------------- PLUGINS -----------------------------------
|
||||||
require("lazy").setup({
|
require("lazy").setup({
|
||||||
spec = {
|
spec = {
|
||||||
{ "LazyVim/LazyVim", import = "lazyvim.plugins" },
|
{
|
||||||
|
"LazyVim/LazyVim",
|
||||||
|
import = "lazyvim.plugins",
|
||||||
|
},
|
||||||
{ import = "plugins" }, -- General Plugins
|
{ import = "plugins" }, -- General Plugins
|
||||||
},
|
},
|
||||||
defaults = { lazy = false, version = false },
|
defaults = { lazy = false, version = false },
|
||||||
@@ -41,4 +44,8 @@ require("lazy").setup({
|
|||||||
loader = true,
|
loader = true,
|
||||||
require = true,
|
require = true,
|
||||||
},
|
},
|
||||||
|
ui = {
|
||||||
|
border = "rounded",
|
||||||
|
title = " Plugin Manager ",
|
||||||
|
},
|
||||||
})
|
})
|
||||||
|
|||||||
Reference in New Issue
Block a user