summaryrefslogtreecommitdiff
path: root/lua
diff options
context:
space:
mode:
Diffstat (limited to 'lua')
-rw-r--r--lua/core/init.lua2
-rw-r--r--lua/plugins/eyecandy/themes.lua12
2 files changed, 12 insertions, 2 deletions
diff --git a/lua/core/init.lua b/lua/core/init.lua
index 1b4542a..5a762e4 100644
--- a/lua/core/init.lua
+++ b/lua/core/init.lua
@@ -4,7 +4,7 @@
vim.opt.mouse = "a" -- Enable mouse support
vim.opt.clipboard = "unnamedplus" -- Copy/paste to system clipboard
vim.opt.termguicolors = true -- Enable 24-bit RGB colors
-vim.o.background = "light"
+vim.o.background = "dark"
vim.opt.hidden = true
vim.opt.number = true
vim.o.cursorlineopt = "both"
diff --git a/lua/plugins/eyecandy/themes.lua b/lua/plugins/eyecandy/themes.lua
index 334b485..de7d2d4 100644
--- a/lua/plugins/eyecandy/themes.lua
+++ b/lua/plugins/eyecandy/themes.lua
@@ -19,7 +19,17 @@ return {
},
},
})
- vim.api.nvim_command("colorscheme catppuccin")
+ --vim.api.nvim_command("colorscheme catppuccin")
+ end,
+ },
+
+ {
+ "ellisonleao/gruvbox.nvim",
+ lazy = false,
+ priority = 1000,
+ config = function()
+ require("gruvbox").setup({})
+ vim.api.nvim_command("colorscheme gruvbox")
end,
},
}