summaryrefslogtreecommitdiffstats
path: root/.config/nvim/after/plugin/gruvbox.lua
diff options
context:
space:
mode:
Diffstat (limited to '.config/nvim/after/plugin/gruvbox.lua')
-rw-r--r--.config/nvim/after/plugin/gruvbox.lua27
1 files changed, 27 insertions, 0 deletions
diff --git a/.config/nvim/after/plugin/gruvbox.lua b/.config/nvim/after/plugin/gruvbox.lua
new file mode 100644
index 0000000..d3e38b1
--- /dev/null
+++ b/.config/nvim/after/plugin/gruvbox.lua
@@ -0,0 +1,27 @@
+require("gruvbox").setup({
+ terminal_colors = false, -- add neovim terminal colors
+ undercurl = true,
+ underline = true,
+ bold = false,
+ italic = {
+ strings = false,
+ 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 = {
+ ["@punctuation.delimiter"] = { fg = "#928374" },
+ },
+ dim_inactive = false,
+ transparent_mode = true,
+})
+-- vim.cmd("colorscheme gruvbox")