summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lazy-lock.json1
-rw-r--r--lua/core/init.lua2
-rw-r--r--lua/plugins/eyecandy/themes.lua12
3 files changed, 13 insertions, 2 deletions
diff --git a/lazy-lock.json b/lazy-lock.json
index 6447955..e15b93e 100644
--- a/lazy-lock.json
+++ b/lazy-lock.json
@@ -15,6 +15,7 @@
"friendly-snippets": { "branch": "main", "commit": "dcd4a586439a1c81357d5b9d26319ae218cc9479" },
"fugitive-gitlab.vim": { "branch": "master", "commit": "e8dd4c9dfe8ce43503dd81286d4e80f65a978e71" },
"gitsigns.nvim": { "branch": "main", "commit": "70584ff9aae8078b64430c574079d79620b8f06d" },
+ "gruvbox.nvim": { "branch": "main", "commit": "6e4027ae957cddf7b193adfaec4a8f9e03b4555f" },
"indent-blankline.nvim": { "branch": "master", "commit": "3d08501caef2329aba5121b753e903904088f7e6" },
"lazy.nvim": { "branch": "main", "commit": "31ddbea7c10b6920c9077b66c97951ca8682d5c8" },
"lspkind.nvim": { "branch": "master", "commit": "1735dd5a5054c1fb7feaf8e8658dbab925f4f0cf" },
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,
},
}