summaryrefslogtreecommitdiff
path: root/lua/plugins/gruvbox.lua
diff options
context:
space:
mode:
Diffstat (limited to 'lua/plugins/gruvbox.lua')
-rw-r--r--lua/plugins/gruvbox.lua10
1 files changed, 10 insertions, 0 deletions
diff --git a/lua/plugins/gruvbox.lua b/lua/plugins/gruvbox.lua
new file mode 100644
index 0000000..a366335
--- /dev/null
+++ b/lua/plugins/gruvbox.lua
@@ -0,0 +1,10 @@
+return {
+ "ellisonleao/gruvbox.nvim",
+ lazy = false,
+ priority = 1000,
+ opts = { transparent_mode = true },
+ config = function(_, opts)
+ require("gruvbox").setup(opts)
+ vim.cmd.colorscheme("gruvbox")
+ end
+}