From e9e04935bb6095997ab7d3f97abb4fb3287dbedf Mon Sep 17 00:00:00 2001 From: Nick Mello Date: Fri, 12 Sep 2025 20:57:59 -0500 Subject: [PATCH] nvim: Update theme to gruvbox The default theme is hard to tell colors apart and the default color schemes aren't great in general Signed-off-by: Nicholas Mello --- nvim/lazy-lock.json | 1 + nvim/lua/plugins/theme.lua | 10 ++++++++++ 2 files changed, 11 insertions(+) create mode 100644 nvim/lua/plugins/theme.lua diff --git a/nvim/lazy-lock.json b/nvim/lazy-lock.json index 366bb2f..39a82e1 100644 --- a/nvim/lazy-lock.json +++ b/nvim/lazy-lock.json @@ -3,6 +3,7 @@ "friendly-snippets": { "branch": "main", "commit": "efff286dd74c22f731cdec26a70b46e5b203c619" }, "fzf.vim": { "branch": "master", "commit": "3725f364ccd25b85a91970720ba9bc2931861910" }, "gitsigns.nvim": { "branch": "main", "commit": "6e3c66548035e50db7bd8e360a29aec6620c3641" }, + "gruvbox.nvim": { "branch": "main", "commit": "5e0a460d8e0f7f669c158dedd5f9ae2bcac31437" }, "lazy.nvim": { "branch": "main", "commit": "6c3bda4aca61a13a9c63f1c1d1b16b9d3be90d7a" }, "lazydev.nvim": { "branch": "main", "commit": "2367a6c0a01eb9edb0464731cc0fb61ed9ab9d2c" }, "mason.nvim": { "branch": "main", "commit": "7dc4facca9702f95353d5a1f87daf23d78e31c2a" }, diff --git a/nvim/lua/plugins/theme.lua b/nvim/lua/plugins/theme.lua new file mode 100644 index 0000000..60c179a --- /dev/null +++ b/nvim/lua/plugins/theme.lua @@ -0,0 +1,10 @@ +return { + "ellisonleao/gruvbox.nvim", + config = function() + vim.g.gruvbox_contrast_dark = "hard" + vim.g.gruvbox_italic = 1 + vim.g.gruvbox_bold = 1 + + vim.cmd("colorscheme gruvbox") + end, +}