return { -- add gruvbox { -- https://github.com/ellisonleao/gruvbox.nvim "ellisonleao/gruvbox.nvim", priority = 1000, opts = function(_, opts) ---@class gruvbox: GruvboxPalette local gruvbox = require("gruvbox").palette gruvbox.dark0_hard_light = "#232627" gruvbox.dark0_hard_dark = "#101c1d" opts.transparent_mode = true opts.contrast = "hard" opts.overrides = { Normal = { bg = gruvbox.dark0_hard }, CursorLine = { bg = gruvbox.dark0 }, CursorLineNr = { bg = gruvbox.dark1 }, CursorLineFold = { bg = gruvbox.dark1 }, CursorLineSign = { bg = gruvbox.dark1 }, GitSignsAdd = { fg = gruvbox.neutral_green }, GitSignsChange = { fg = gruvbox.neutral_orange }, GitSignsDelete = { fg = gruvbox.neutral_red }, GitSignsAddCul = { fg = gruvbox.bright_green, bg = gruvbox.dark1 }, GitSignsChangeCul = { fg = gruvbox.bright_orange, bg = gruvbox.dark1 }, GitSignsDeleteCul = { fg = gruvbox.bright_red, bg = gruvbox.dark1 }, } end }, -- Configure LazyVim to load gruvbox { -- https://github.com/LazyVim/LazyVim "LazyVim/LazyVim", opts = { colorscheme = "gruvbox", }, }, -- -- Disable the other themes. No need to install them -- -- tokyonight { -- https://github.com/folke/tokyonight.nvim "folke/tokyonight.nvim", enabled = false, }, -- catppuccin { -- https://github.com/catppuccin/nvim "catppuccin/nvim", enabled = false, }, }