diff --git a/lua/custom/plugins/themes/aquarium-vim.lua b/lua/custom/plugins/themes/aquarium-vim.lua new file mode 100644 index 00000000..8ba25759 --- /dev/null +++ b/lua/custom/plugins/themes/aquarium-vim.lua @@ -0,0 +1 @@ +return { 'frenzyexists/aquarium-vim' } diff --git a/lua/custom/plugins/themes/blue-moon.lua b/lua/custom/plugins/themes/blue-moon.lua new file mode 100644 index 00000000..15dd5909 --- /dev/null +++ b/lua/custom/plugins/themes/blue-moon.lua @@ -0,0 +1 @@ +return { 'kyazdani42/blue-moon' } diff --git a/lua/custom/plugins/themes/everblush.lua b/lua/custom/plugins/themes/everblush.lua new file mode 100644 index 00000000..ab9db08b --- /dev/null +++ b/lua/custom/plugins/themes/everblush.lua @@ -0,0 +1 @@ +return { 'Everblush/nvim', name = 'everblush' } diff --git a/lua/custom/plugins/themes/falcon.lua b/lua/custom/plugins/themes/falcon.lua new file mode 100644 index 00000000..c7540485 --- /dev/null +++ b/lua/custom/plugins/themes/falcon.lua @@ -0,0 +1 @@ +return { 'fenetikm/falcon' } diff --git a/lua/custom/plugins/themes/gloombuddy.lua b/lua/custom/plugins/themes/gloombuddy.lua new file mode 100644 index 00000000..53eff59e --- /dev/null +++ b/lua/custom/plugins/themes/gloombuddy.lua @@ -0,0 +1,4 @@ +return { + 'bkegley/gloombuddy', + dependencies = { 'tjdevries/colorbuddy.nvim', branch = 'dev' }, +} diff --git a/lua/custom/plugins/themes/malifluous.lua b/lua/custom/plugins/themes/malifluous.lua new file mode 100644 index 00000000..a6601315 --- /dev/null +++ b/lua/custom/plugins/themes/malifluous.lua @@ -0,0 +1,9 @@ +return { + 'ramojus/mellifluous.nvim', + dependencies = { 'rktjmp/lush.nvim' }, + config = function() + require('mellifluous').setup { --[[...]] + } -- optional, see configuration section. + -- vim.cmd('colorscheme mellifluous') + end, +} diff --git a/lua/custom/plugins/themes/neon.lua b/lua/custom/plugins/themes/neon.lua new file mode 100644 index 00000000..d1303bbb --- /dev/null +++ b/lua/custom/plugins/themes/neon.lua @@ -0,0 +1 @@ +return { 'rafamadriz/neon' } diff --git a/lua/custom/plugins/themes/nvim-deus.lua b/lua/custom/plugins/themes/nvim-deus.lua new file mode 100644 index 00000000..2c6b6594 --- /dev/null +++ b/lua/custom/plugins/themes/nvim-deus.lua @@ -0,0 +1 @@ +return { 'theniceboy/nvim-deus' } diff --git a/lua/custom/plugins/themes/nvim-hybrid.lua b/lua/custom/plugins/themes/nvim-hybrid.lua new file mode 100644 index 00000000..3cc41bed --- /dev/null +++ b/lua/custom/plugins/themes/nvim-hybrid.lua @@ -0,0 +1,8 @@ +return { + 'PHSix/nvim-hybrid', + config = function() + require('hybrid').setup() + -- or use + -- vim.cmd [[colorscheme nvim-hybrid]] + end, +} diff --git a/lua/custom/plugins/themes/nvim-juliana.lua b/lua/custom/plugins/themes/nvim-juliana.lua new file mode 100644 index 00000000..2f867c18 --- /dev/null +++ b/lua/custom/plugins/themes/nvim-juliana.lua @@ -0,0 +1,7 @@ +return { + 'kaiuri/nvim-juliana', + lazy = false, + opts = { --[=[ configuration --]=] + }, + config = true, +} diff --git a/lua/custom/plugins/themes/nvimgelion.lua b/lua/custom/plugins/themes/nvimgelion.lua new file mode 100644 index 00000000..eaf86b86 --- /dev/null +++ b/lua/custom/plugins/themes/nvimgelion.lua @@ -0,0 +1 @@ +return { 'nyngwang/nvimgelion' } diff --git a/lua/custom/plugins/themes/oceanic-next.lua b/lua/custom/plugins/themes/oceanic-next.lua new file mode 100644 index 00000000..ddaea13b --- /dev/null +++ b/lua/custom/plugins/themes/oceanic-next.lua @@ -0,0 +1 @@ +return { 'mhartington/oceanic-next' } diff --git a/lua/custom/plugins/themes/oh-lucy.lua b/lua/custom/plugins/themes/oh-lucy.lua new file mode 100644 index 00000000..112091df --- /dev/null +++ b/lua/custom/plugins/themes/oh-lucy.lua @@ -0,0 +1 @@ +return { 'Yazeed1s/oh-lucy.nvim' } diff --git a/lua/custom/plugins/themes/rasmus.lua b/lua/custom/plugins/themes/rasmus.lua new file mode 100644 index 00000000..9fec2033 --- /dev/null +++ b/lua/custom/plugins/themes/rasmus.lua @@ -0,0 +1 @@ +return { 'kvrohit/rasmus.nvim' } diff --git a/lua/custom/plugins/themes/vim-thematic.lua b/lua/custom/plugins/themes/vim-thematic.lua index 515285ef..b475a5e9 100644 --- a/lua/custom/plugins/themes/vim-thematic.lua +++ b/lua/custom/plugins/themes/vim-thematic.lua @@ -8,23 +8,41 @@ let g:thematic#themes = { \ }, \ 'anthraxylon' : { \ }, +\ 'aquarium' : { +\ }, \ 'ayu' : { \ }, +\ 'blue-moon' : { +\ }, \ 'bluloco' : { \ }, \ 'catppuccin' : { \ }, +\ 'deus' : { +\ }, \ 'dracula' : { \ 'typeface': 'FuraCode Nerd Font Mono Light', \ }, \ 'embark' : { \ }, +\ 'everblush' : { +\ }, +\ 'falcon' : { +\ }, +\ 'gloombuddy' : { +\ }, +\ 'hybrid' : { +\ }, +\ 'juliana' : { +\ }, \ 'kanagawa' : { \ }, \ 'leuven' : { \ }, \ 'lucius' : { \ }, +\ 'malifluous' : { +\ }, \ 'materiam' : { \ }, \ 'melange' : { @@ -38,6 +56,8 @@ let g:thematic#themes = { \ }, \ 'moonfly' : { \ }, +\ 'neon' : { +\ }, \ 'nightfox' : { \ }, \ 'nightfly' : { @@ -48,9 +68,15 @@ let g:thematic#themes = { \ }, \ 'nordic' : { \ }, +\ 'nvimgelion' : { +\ }, +\ 'oceanic-next' : { +\ }, \ 'off' : { \ 'typeface': 'Cascadia Code Regular', \ }, +\ 'oh-lucy' : { +\ }, \ 'oxocarbon' : { \ }, \ 'palenight' : { @@ -83,6 +109,8 @@ let g:thematic#themes = { \ }, \ 'pinkmare' : { \ }, +\ 'rasmus' : { +\ }, \ 'rose-pine' : { \ }, \ 'sacredforest' : { @@ -106,6 +134,8 @@ let g:thematic#themes = { \ }, \ 'tokyonight-moon' : { \ }, +\ 'zephyr' : { +\ }, \ } diff --git a/lua/custom/plugins/themes/zephyr-nvim.lua b/lua/custom/plugins/themes/zephyr-nvim.lua new file mode 100644 index 00000000..356f6f0e --- /dev/null +++ b/lua/custom/plugins/themes/zephyr-nvim.lua @@ -0,0 +1 @@ +return { 'nvimdev/zephyr-nvim' } diff --git a/lua/custom/plugins/vim-be-good.lua b/lua/custom/plugins/vim-be-good.lua new file mode 100644 index 00000000..829db8a7 --- /dev/null +++ b/lua/custom/plugins/vim-be-good.lua @@ -0,0 +1 @@ +return { 'ThePrimeagen/vim-be-good' }