💄 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:
2024-08-06 02:45:04 -04:00
parent a43e7f988a
commit a28685fc22
+8 -1
View File
@@ -19,7 +19,10 @@ vim.opt.rtp:prepend(vim.env.LAZY or lazypath)
-- --------------------------------- PLUGINS -----------------------------------
require("lazy").setup({
spec = {
{ "LazyVim/LazyVim", import = "lazyvim.plugins" },
{
"LazyVim/LazyVim",
import = "lazyvim.plugins",
},
{ import = "plugins" }, -- General Plugins
},
defaults = { lazy = false, version = false },
@@ -41,4 +44,8 @@ require("lazy").setup({
loader = true,
require = true,
},
ui = {
border = "rounded",
title = " Plugin Manager ",
},
})