diff options
| author | Justine Smithies <justine@smithies.me.uk> | 2025-11-04 20:34:36 +0000 |
|---|---|---|
| committer | Justine Smithies <justine@smithies.me.uk> | 2025-11-04 20:34:36 +0000 |
| commit | 067b0e87aae4cf81b4dfd0907c6ce1d3650b7523 (patch) | |
| tree | 58512324aa4b6479b328d3424f4507fa7bb9e9ef /.config/nvim/lua/plugins/gruvbox.lua | |
| parent | b3a0a68af5dcb496fdd1b8a40bd0f5a9904659b8 (diff) | |
Initial commit
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 +} |
