From a28685fc22881a8bb5d094330689277717e378bc Mon Sep 17 00:00:00 2001 From: rootiest Date: Tue, 6 Aug 2024 02:45:04 -0400 Subject: [PATCH] =?UTF-8?q?=F0=9F=92=84=20ui(lazy.nvim):=20add=20some=20UI?= =?UTF-8?q?=20tweaks=20for=20lazy.nvim?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Add a border and title to lazy.nvim plugin manager window --- lua/config/lazy.lua | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) 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 ", + }, })