diff options
Diffstat (limited to 'dot-config/nvim/lua')
| -rw-r--r-- | dot-config/nvim/lua/plugins/theme.lua | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/dot-config/nvim/lua/plugins/theme.lua b/dot-config/nvim/lua/plugins/theme.lua index f70859a..5cd294d 100644 --- a/dot-config/nvim/lua/plugins/theme.lua +++ b/dot-config/nvim/lua/plugins/theme.lua @@ -130,6 +130,38 @@ return { }, { + "Mofiqul/vscode.nvim", + lazy = false, + priority = 1000, + opts = { + transparent = true, + }, + }, + + { + "EdenEast/nightfox.nvim", + lazy = false, + priority = 1000, + opts = { + options = { + transparent = true, + }, + }, + }, + + { + "nyoom-engineering/oxocarbon.nvim", + name = "oxocarbon", + lazy = false, + priority = 1000, + config = function() + vim.api.nvim_set_hl(0, "Normal", { bg = "none" }) + vim.api.nvim_set_hl(0, "NormalFloat", { bg = "none" }) + vim.api.nvim_set_hl(0, "NormalNC", { bg = "none" }) + end, + }, + + { "LazyVim/LazyVim", opts = { colorscheme = "sonokai", |
