From 0cf4b6194c26b63fb5ebccd9af74ce207dca7b66 Mon Sep 17 00:00:00 2001 From: Oliver Ladner Date: Tue, 15 Sep 2026 10:24:10 +0200 Subject: [PATCH] feat(theme): add sovjet theme --- lua/weeheavy/plugins/theme/soviet.lua | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 lua/weeheavy/plugins/theme/soviet.lua diff --git a/lua/weeheavy/plugins/theme/soviet.lua b/lua/weeheavy/plugins/theme/soviet.lua new file mode 100644 index 0000000..c6a96c2 --- /dev/null +++ b/lua/weeheavy/plugins/theme/soviet.lua @@ -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, +}