summaryrefslogtreecommitdiff
path: root/dot-config/nvim/lua/plugins/theme.lua
diff options
context:
space:
mode:
Diffstat (limited to 'dot-config/nvim/lua/plugins/theme.lua')
-rw-r--r--dot-config/nvim/lua/plugins/theme.lua19
1 files changed, 19 insertions, 0 deletions
diff --git a/dot-config/nvim/lua/plugins/theme.lua b/dot-config/nvim/lua/plugins/theme.lua
new file mode 100644
index 0000000..2969c42
--- /dev/null
+++ b/dot-config/nvim/lua/plugins/theme.lua
@@ -0,0 +1,19 @@
+return {
+ -- gruvbox material
+ -- https://github.com/sainnhe/gruvbox-material
+ {
+ "sainnhe/gruvbox-material",
+ lazy = false,
+ priority = 1000,
+ config = function()
+ vim.g.gruvbox_material_transparent_background = 2
+ end,
+ },
+
+ {
+ "LazyVim/LazyVim",
+ opts = {
+ colorscheme = "gruvbox-material",
+ },
+ },
+}