diff options
Diffstat (limited to 'dot-config/nvim/lua/plugins')
| -rw-r--r-- | dot-config/nvim/lua/plugins/theme.lua | 111 |
1 files changed, 103 insertions, 8 deletions
diff --git a/dot-config/nvim/lua/plugins/theme.lua b/dot-config/nvim/lua/plugins/theme.lua index f4427ba..f70859a 100644 --- a/dot-config/nvim/lua/plugins/theme.lua +++ b/dot-config/nvim/lua/plugins/theme.lua @@ -15,29 +15,124 @@ return { lazy = false, priority = 1000, opts = { - transparent = true - } + transparent = true, + }, }, - { "vague2k/vague.nvim", lazy = false, priority = 1000 }, - - { "metalelf0/black-metal-theme-neovim", lazy = false, priority = 1000 }, + { + "vague2k/vague.nvim", + lazy = false, + priority = 1000, + opts = { + transparent = true, + }, + }, { - 'AlexvZyl/nordic.nvim', + "AlexvZyl/nordic.nvim", lazy = false, priority = 1000, opts = { transparent = { - bg = true + bg = true, + float = true, }, }, }, { + "catppuccin/nvim", + name = "catppuccin", + priority = 1000, + opts = { + transparent_background = true, + }, + }, + + { + "rose-pine/neovim", + name = "rose-pine", + priority = 1000, + opts = { + styles = { + transparency = true, + }, + }, + }, + + { + "sainnhe/sonokai", + lazy = false, + priority = 1000, + config = function() + vim.g.sonokai_transparent_background = 2 + end, + }, + + { + "sainnhe/edge", + lazy = false, + priority = 1000, + config = function() + vim.g.edge_transparent_background = 2 + end, + }, + + { + "projekt0n/github-nvim-theme", + lazy = false, + priority = 1000, + config = function() + require("github-theme").setup({ + options = { + transparent = true, + }, + }) + end, + }, + + { + "bluz71/vim-moonfly-colors", + name = "moonfly", + lazy = false, + priority = 1000, + config = function() + vim.g.moonflyTransparent = true + end, + }, + + { + "miikanissi/modus-themes.nvim", + lazy = false, + priority = 1000, + opts = { + transparent = true, + line_nr_column_background = false, + }, + }, + + { + "scottmckendry/cyberdream.nvim", + lazy = false, + priority = 1000, + opts = { + transparent = true, + }, + }, + + { + "folke/tokyonight.nvim", + lazy = false, + priority = 1000, + opts = { + transparent = true, + }, + }, + + { "LazyVim/LazyVim", opts = { - colorscheme = "kanso-zen", + colorscheme = "sonokai", }, }, } |
