feat: migrated plugin manager from lazy to vim.pack

This commit is contained in:
2026-03-08 10:37:07 +01:00
parent bb89997e23
commit 7cb5b2d4b6
8 changed files with 155 additions and 166 deletions

View File

@@ -1,17 +1,14 @@
return {
"rose-pine/neovim",
name = "rose-pine",
config = function()
local configs = require("rose-pine");
configs.setup({
variant = "moon",
styles = {
transparency = true;
}
})
vim.pack.add({
'https://github.com/rose-pine/neovim',
})
vim.cmd("colorscheme rose-pine")
end
}
require("rose-pine").setup({
variant = "moon",
styles = {
transparency = true;
}
})
vim.cmd[[colorscheme rose-pine]]