{
"dybdeskarphet/gruvbox-minimal.nvim"
config = {
vim.cmd.colorscheme("gruvbox-minimal")
}
}
MiniDeps.add({
source = "dybdeskarphet/gruvbox-minimal.nvim"
})
MiniDeps.now({
-- Add the relevant configuration options if you want to
vim.cmd.colorscheme("gruvbox-minimal")
})
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"
})
-- Activates the colorscheme
vim.cmd.colorscheme('gruvbox-minimal')