💄 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 -----------------------------------
|
||||
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 ",
|
||||
},
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user