Files
dotfiles/.config/nvim/lua/plugins/gruvbox.lua
Felix Nehrke 24f7891460 Migrate vim to neovim (min v0.11)
Install newest vim-releases via appimage from github-page!
2025-08-10 17:12:01 +02:00

21 lines
394 B
Lua

return {
{
-- "lifepillar/vim-gruvbox8",
-- priority = 1000, --ensure loading before other plugins
-- opts = {},
-- config = function()
-- vim.g.gruvbox_contrast_dark = "hard"
-- --vim.cmd("colorscheme gruvbox8")
-- end,
--}, {
"ellisonleao/gruvbox.nvim",
priority = 1000,
opts = {
contrast = "hard",
},
config = function()
vim.cmd("colorscheme gruvbox")
end
}
}