diff --git a/lua/config/lazy.lua b/lua/config/lazy.lua index 8b1d844..fb137a4 100644 --- a/lua/config/lazy.lua +++ b/lua/config/lazy.lua @@ -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 ", + }, })