feat(theme): add sovjet theme

This commit is contained in:
Oliver Ladner 2026-09-15 10:24:10 +02:00
commit 0cf4b6194c

View file

@ -0,0 +1,13 @@
return {
"rezniqov/soviet.nvim",
branch = "main",
lazy = false,
enabled = true,
priority = 1000,
opts = {}, -- Add your soviet.nvim settings here.
config = function(_, opts)
require("soviet").setup(opts)
vim.cmd.colorscheme("soviet-dark")
-- vim.cmd.colorscheme("soviet-light")
end,
}