summaryrefslogtreecommitdiffstats
path: root/.config/nvim/after/plugin/gruvbox.lua
diff options
context:
space:
mode:
authorjoe <rbo@gmx.us>2025-08-25 18:13:21 +0200
committerjoe <rbo@gmx.us>2025-08-25 18:13:21 +0200
commit41682275d321b6b79ee4c07f25e819875519466e (patch)
tree301ee0175c17d2394a950ef7d11bffd0d47597ac /.config/nvim/after/plugin/gruvbox.lua
parentup (diff)
downloaddotfiles-bsd-41682275d321b6b79ee4c07f25e819875519466e.tar.gz
dotfiles-bsd-41682275d321b6b79ee4c07f25e819875519466e.tar.bz2
dotfiles-bsd-41682275d321b6b79ee4c07f25e819875519466e.tar.xz
dotfiles-bsd-41682275d321b6b79ee4c07f25e819875519466e.tar.zst
dotfiles-bsd-41682275d321b6b79ee4c07f25e819875519466e.zip
cool
Diffstat (limited to '.config/nvim/after/plugin/gruvbox.lua')
-rw-r--r--.config/nvim/after/plugin/gruvbox.lua29
1 files changed, 0 insertions, 29 deletions
diff --git a/.config/nvim/after/plugin/gruvbox.lua b/.config/nvim/after/plugin/gruvbox.lua
deleted file mode 100644
index 7ea4f3e..0000000
--- a/.config/nvim/after/plugin/gruvbox.lua
+++ /dev/null
@@ -1,29 +0,0 @@
-require("gruvbox").setup({
- priority = 1000,
- 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" },
- ["@string"] = { fg = "#8ec07c" },
- },
- dim_inactive = false,
- transparent_mode = true,
-})
-vim.cmd("colorscheme gruvbox")