Migrate vim to neovim (min v0.11)

Install newest vim-releases via appimage from github-page!
This commit is contained in:
2025-08-10 07:58:09 +02:00
parent ca4e45b4aa
commit 24f7891460
26 changed files with 781 additions and 252 deletions

View File

@@ -0,0 +1,20 @@
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
}
}