diff options
author | Justine Smithies <justine@smithies.me.uk> | 2025-02-01 15:54:42 +0000 |
---|---|---|
committer | Justine Smithies <justine@smithies.me.uk> | 2025-02-01 15:54:42 +0000 |
commit | 6fe6bd334f8c006e6fc8fdf0c8a9a4181000be13 (patch) | |
tree | 4c91fcc95664ff640b6b926b7b0cbc9258f9ca7a /.config/nvim/lua/plugins/gruvbox.lua | |
parent | 3fe8cfadba3c095565d30710be5e281780966e78 (diff) |
Initial commit of my revamped Neovim config
Diffstat (limited to '.config/nvim/lua/plugins/gruvbox.lua')
-rw-r--r-- | .config/nvim/lua/plugins/gruvbox.lua | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/.config/nvim/lua/plugins/gruvbox.lua b/.config/nvim/lua/plugins/gruvbox.lua new file mode 100644 index 0000000..5779f5e --- /dev/null +++ b/.config/nvim/lua/plugins/gruvbox.lua @@ -0,0 +1,32 @@ +return { + "ellisonleao/gruvbox.nvim", + lazy = false, + priority = 999, + config = function() + require("gruvbox").setup({ + undercurl = true, + underline = true, + bold = true, + italic = { + strings = true, + emphasis = true, + comments = true, + operators = false, + folds =true, + }, + strikethrough = true, + invert_selection = false, + invert_signs = false, + invert_tabline = false, + invert_intend_guides = false, + inverse = true, -- invert background for search, diffs, statuslines and errors + contrast = "", -- can be "hard", "soft" or empty string + palette_overrides = {}, + overrides = {}, + dim_inactive = false, + transparent_mode = false, + }) + vim.cmd('colorscheme gruvbox') + vim.api.nvim_set_hl(0, "Normal", {guibg = NONE, ctermbg = NONE}) + end +} |