{
"dybdeskarphet/gruvbox-minimal.nvim"
config = {
vim.cmd.colorscheme("gruvbox-minimal")
}
}
MiniDeps.add({
source = "dybdeskarphet/gruvbox-minimal.nvim"
})
MiniDeps.now(function()
-- Add the relevant configuration options if you want to
vim.cmd.colorscheme("gruvbox-minimal")
end)
The default configuration settings are as follows:
require("gruvbox-minimal").setup({
transparent = false, -- Sets all the major background values to 'none'
italic_comments = false, -- Italic comments
contrast = "low", -- Available values: "high", "low"
theme = "dark", -- Available values: "dark", "light"
accent = "red", -- Changes the definition (functions, structs etc.) colors. Available values: "red", "orange", "yellow", "green", "cyan", "blue", "magenta"
semantic_highlights = true, -- Uses Tree-sitter semantic highlighting, disable this if you want the highlights of =< 0.3.1
})
-- Activates the colorscheme
vim.cmd.colorscheme('gruvbox-minimal')