diff options
| author | Naz <ndpm13@ch-naseem.com> | 2025-02-08 09:47:06 +0100 |
|---|---|---|
| committer | Naz <ndpm13@ch-naseem.com> | 2025-02-08 09:47:06 +0100 |
| commit | 3d882514674296ac22e9aea051318a7eff5d6d1e (patch) | |
| tree | d96f4890c6cff461daf1e398ae3f6eaadf6175f8 /lua/plugins/gruvbox.lua | |
| parent | b02f5bdea07b87d340b4bd7825a0e13b52fbd2b3 (diff) | |
✨feat: add ellisonleao/gruvbox.nvim plugin to improve productivity
Diffstat (limited to 'lua/plugins/gruvbox.lua')
| -rw-r--r-- | lua/plugins/gruvbox.lua | 15 |
1 files changed, 15 insertions, 0 deletions
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, +} |
