Gruvbox Minimal
A Gruvbox Material theme conceptually inspired by Alabaster.
vim.pack
vim.pack.add("https://github.com/dybdeskarphet/gruvbox-minimal.nvim")
vim.cmd.colorscheme("gruvbox-minimal")lazy.nvim
{
"dybdeskarphet/gruvbox-minimal.nvim"
config = {
vim.cmd.colorscheme("gruvbox-minimal")
}
}mini.deps
-- Assuming that require("mini.deps").setup() call has been made
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
italic_functions = true, -- Italic functions and methods
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 LSP semantic highlighting, disable this if you want the highlights of =< 0.3.1
terminal_colors = true, -- Replaces the terminal's ANSI colors with color scheme's
markdown_docstring = {
python = false, -- Only available language for now
}, -- Highlights docstring content as markdown
overrides = {
-- Type = { fg = '#83a598' }, -- Hex override
-- ['Type'] = { link = '@function.method.call' }, -- Link to another group
},
})
-- Activates the colorscheme
vim.cmd.colorscheme('gruvbox-minimal')- mini.nvim
- mini.hipatterns
- mini.statusline
- mini.diff
- mini.clue
- mini.indentscope
- mini.starter
- MeanderingProgrammer/render-markdown.nvim
- shellRaining/hlchunk.nvim
- lewis6991/gitsigns.nvim
- folke/flash.nvim
- lukas-reineke/indent-blankline.nvim
- DanilaMihailov/beacon.nvim
- m-pilia/vim-mediawiki






