From 3d882514674296ac22e9aea051318a7eff5d6d1e Mon Sep 17 00:00:00 2001 From: Naz Date: Sat, 8 Feb 2025 09:47:06 +0100 Subject: =?UTF-8?q?=E2=9C=A8feat:=20add=20ellisonleao/gruvbox.nvim=20plugi?= =?UTF-8?q?n=20to=20improve=20productivity?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lua/config/lazy.lua | 2 +- lua/plugins/gruvbox.lua | 15 +++++++++++++++ 2 files changed, 16 insertions(+), 1 deletion(-) create mode 100644 lua/plugins/gruvbox.lua (limited to 'lua') diff --git a/lua/config/lazy.lua b/lua/config/lazy.lua index c7f7499..5cc79ef 100644 --- a/lua/config/lazy.lua +++ b/lua/config/lazy.lua @@ -19,7 +19,7 @@ vim.opt.rtp:prepend(lazypath) require("lazy").setup({ spec = { -- import your plugins - -- { import = "plugins" }, + { import = "plugins" }, }, -- automatically check for plugin updates checker = { enabled = true }, diff --git a/lua/plugins/gruvbox.lua b/lua/plugins/gruvbox.lua new file mode 100644 index 0000000..71ba06a --- /dev/null +++ b/lua/plugins/gruvbox.lua @@ -0,0 +1,15 @@ +return { + "ellisonleao/gruvbox.nvim", + name = "gruvbox", + priority = 1000, + config = function() + vim.cmd.colorscheme("gruvbox") + + vim.o.termguicolors = true + vim.o.background = "dark" + + vim.api.nvim_set_hl(0, "Normal", { bg = "none" }) + vim.api.nvim_set_hl(0, "NormalFloat", { bg = "none" }) + vim.cmd("highlight comment guifg=#928374") + end, +} -- cgit v1.2.3