diff options
Diffstat (limited to 'lua')
| -rw-r--r-- | lua/config/lazy.lua | 2 | ||||
| -rw-r--r-- | lua/plugins/gruvbox.lua | 15 |
2 files changed, 16 insertions, 1 deletions
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, +} |
