feat: add all plugins from the old config
This commit is contained in:
parent
4a37a0a9b1
commit
1fd5843cf1
55 changed files with 401 additions and 0 deletions
1
lua/custom/plugins/themes/anthraxylon.lua
Normal file
1
lua/custom/plugins/themes/anthraxylon.lua
Normal file
|
|
@ -0,0 +1 @@
|
|||
return { 'high-moctane/anthraxylon', branch = 'main' }
|
||||
7
lua/custom/plugins/themes/ayu-vim.lua
Normal file
7
lua/custom/plugins/themes/ayu-vim.lua
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
return {
|
||||
'ayu-theme/ayu-vim',
|
||||
config = function()
|
||||
-- light, mirage, dark
|
||||
vim.cmd([[ let ayucolor="mirage" ]])
|
||||
end
|
||||
}
|
||||
4
lua/custom/plugins/themes/bluloco.lua
Normal file
4
lua/custom/plugins/themes/bluloco.lua
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
return {
|
||||
'uloco/bluloco.nvim',
|
||||
dependencies = { 'rktjmp/lush.nvim' }
|
||||
}
|
||||
9
lua/custom/plugins/themes/catppuccin.lua
Normal file
9
lua/custom/plugins/themes/catppuccin.lua
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
return {
|
||||
"catppuccin/nvim",
|
||||
name = "catppuccin",
|
||||
config = function()
|
||||
-- latte, frappe, macchiato, mocha
|
||||
vim.g.catppuccin_flavour = "frappe"
|
||||
require("catppuccin").setup()
|
||||
end
|
||||
}
|
||||
1
lua/custom/plugins/themes/dracula.lua
Normal file
1
lua/custom/plugins/themes/dracula.lua
Normal file
|
|
@ -0,0 +1 @@
|
|||
return { 'dracula/vim', name = 'dracula' }
|
||||
1
lua/custom/plugins/themes/embark.lua
Normal file
1
lua/custom/plugins/themes/embark.lua
Normal file
|
|
@ -0,0 +1 @@
|
|||
return { 'embark-theme/vim', name = 'embark', branch = 'main' }
|
||||
5
lua/custom/plugins/themes/init.lua
Normal file
5
lua/custom/plugins/themes/init.lua
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
-- You can add your own plugins here or in other files in this directory!
|
||||
-- I promise not to create any merge conflicts in this directory :)
|
||||
--
|
||||
-- See the kickstart.nvim README for more information
|
||||
return { import = "custom.plugins.themes" }
|
||||
1
lua/custom/plugins/themes/kanagawa.lua
Normal file
1
lua/custom/plugins/themes/kanagawa.lua
Normal file
|
|
@ -0,0 +1 @@
|
|||
return { "rebelot/kanagawa.nvim" }
|
||||
1
lua/custom/plugins/themes/material.lua
Normal file
1
lua/custom/plugins/themes/material.lua
Normal file
|
|
@ -0,0 +1 @@
|
|||
return { 'kaicataldo/material.vim', branch = 'main' }
|
||||
1
lua/custom/plugins/themes/melange.lua
Normal file
1
lua/custom/plugins/themes/melange.lua
Normal file
|
|
@ -0,0 +1 @@
|
|||
return {'savq/melange'}
|
||||
1
lua/custom/plugins/themes/modus-theme-vim.lua
Normal file
1
lua/custom/plugins/themes/modus-theme-vim.lua
Normal file
|
|
@ -0,0 +1 @@
|
|||
return {'ishan9299/modus-theme-vim'}
|
||||
1
lua/custom/plugins/themes/monochrome.lua
Normal file
1
lua/custom/plugins/themes/monochrome.lua
Normal file
|
|
@ -0,0 +1 @@
|
|||
return {'fxn/vim-monochrome'}
|
||||
1
lua/custom/plugins/themes/night-own.lua
Normal file
1
lua/custom/plugins/themes/night-own.lua
Normal file
|
|
@ -0,0 +1 @@
|
|||
return {'haishanh/night-owl.vim'}
|
||||
1
lua/custom/plugins/themes/nightfox.lua
Normal file
1
lua/custom/plugins/themes/nightfox.lua
Normal file
|
|
@ -0,0 +1 @@
|
|||
return {"EdenEast/nightfox.nvim"}
|
||||
9
lua/custom/plugins/themes/nvim-noirbuddy.lua
Normal file
9
lua/custom/plugins/themes/nvim-noirbuddy.lua
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
return {
|
||||
"jesseleite/nvim-noirbuddy",
|
||||
dependencies = { "tjdevries/colorbuddy.nvim", branch = "dev" },
|
||||
config = function()
|
||||
require('noirbuddy').setup {
|
||||
preset = 'miami-nights',
|
||||
}
|
||||
end
|
||||
}
|
||||
1
lua/custom/plugins/themes/oxocarbon.lua
Normal file
1
lua/custom/plugins/themes/oxocarbon.lua
Normal file
|
|
@ -0,0 +1 @@
|
|||
return { 'nyoom-engineering/oxocarbon.nvim' }
|
||||
1
lua/custom/plugins/themes/palenight.lua
Normal file
1
lua/custom/plugins/themes/palenight.lua
Normal file
|
|
@ -0,0 +1 @@
|
|||
return {'drewtempelmeyer/palenight.vim'}
|
||||
1
lua/custom/plugins/themes/palenightfall.lua
Normal file
1
lua/custom/plugins/themes/palenightfall.lua
Normal file
|
|
@ -0,0 +1 @@
|
|||
return {'JoosepAlviste/palenightfall.nvim'}
|
||||
1
lua/custom/plugins/themes/pinkmare.lua
Normal file
1
lua/custom/plugins/themes/pinkmare.lua
Normal file
|
|
@ -0,0 +1 @@
|
|||
return {'matsuuu/pinkmare'}
|
||||
1
lua/custom/plugins/themes/sacredforest-vim.lua
Normal file
1
lua/custom/plugins/themes/sacredforest-vim.lua
Normal file
|
|
@ -0,0 +1 @@
|
|||
return {'KKPMW/sacredforest-vim'}
|
||||
1
lua/custom/plugins/themes/tender.lua
Normal file
1
lua/custom/plugins/themes/tender.lua
Normal file
|
|
@ -0,0 +1 @@
|
|||
return {'jacoborus/tender.vim'}
|
||||
1
lua/custom/plugins/themes/tokyonight.lua
Normal file
1
lua/custom/plugins/themes/tokyonight.lua
Normal file
|
|
@ -0,0 +1 @@
|
|||
return {'folke/tokyonight.nvim'}
|
||||
1
lua/custom/plugins/themes/vim-afterglow.lua
Normal file
1
lua/custom/plugins/themes/vim-afterglow.lua
Normal file
|
|
@ -0,0 +1 @@
|
|||
return { 'danilo-augusto/vim-afterglow'}
|
||||
1
lua/custom/plugins/themes/vim-colors-off.lua
Normal file
1
lua/custom/plugins/themes/vim-colors-off.lua
Normal file
|
|
@ -0,0 +1 @@
|
|||
return { 'pbrisbin/vim-colors-off', branch = 'main' }
|
||||
1
lua/custom/plugins/themes/vim-colors-pencil.lua
Normal file
1
lua/custom/plugins/themes/vim-colors-pencil.lua
Normal file
|
|
@ -0,0 +1 @@
|
|||
return {'reedes/vim-colors-pencil'}
|
||||
1
lua/custom/plugins/themes/vim-colors-plain.lua
Normal file
1
lua/custom/plugins/themes/vim-colors-plain.lua
Normal file
|
|
@ -0,0 +1 @@
|
|||
return {'andreypopp/vim-colors-plain'}
|
||||
1
lua/custom/plugins/themes/vim-colors-solarized.lua
Normal file
1
lua/custom/plugins/themes/vim-colors-solarized.lua
Normal file
|
|
@ -0,0 +1 @@
|
|||
return {'altercation/vim-colors-solarized'}
|
||||
1
lua/custom/plugins/themes/vim-envy.lua
Normal file
1
lua/custom/plugins/themes/vim-envy.lua
Normal file
|
|
@ -0,0 +1 @@
|
|||
return { 'kkga/vim-envy' }
|
||||
7
lua/custom/plugins/themes/vim-leuven-theme.lua
Normal file
7
lua/custom/plugins/themes/vim-leuven-theme.lua
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
return { 'gzagatti/vim-leuven-theme',
|
||||
config = function()
|
||||
vim.opt.termguicolors = true
|
||||
vim.opt.guicursor = 'a:blinkon0-Cursor,i-ci:ver100'
|
||||
-- vim.cmd([[ colorscheme leuven ]])
|
||||
end
|
||||
}
|
||||
1
lua/custom/plugins/themes/vim-lucius.lua
Normal file
1
lua/custom/plugins/themes/vim-lucius.lua
Normal file
|
|
@ -0,0 +1 @@
|
|||
return {'jonathanfilip/vim-lucius'}
|
||||
1
lua/custom/plugins/themes/vim-moonfly-colors.lua
Normal file
1
lua/custom/plugins/themes/vim-moonfly-colors.lua
Normal file
|
|
@ -0,0 +1 @@
|
|||
return { 'bluz71/vim-moonfly-colors', branch = 'cterm-compat' }
|
||||
1
lua/custom/plugins/themes/vim-nightfly-colors.lua
Normal file
1
lua/custom/plugins/themes/vim-nightfly-colors.lua
Normal file
|
|
@ -0,0 +1 @@
|
|||
return {'bluz71/vim-nightfly-colors'}
|
||||
1
lua/custom/plugins/themes/vim-solarized8.lua
Normal file
1
lua/custom/plugins/themes/vim-solarized8.lua
Normal file
|
|
@ -0,0 +1 @@
|
|||
return {'lifepillar/vim-solarized8'}
|
||||
122
lua/custom/plugins/themes/vim-thematic.lua
Normal file
122
lua/custom/plugins/themes/vim-thematic.lua
Normal file
|
|
@ -0,0 +1,122 @@
|
|||
return {
|
||||
"preservim/vim-thematic",
|
||||
config = function()
|
||||
vim.cmd([[
|
||||
let g:thematic#themes = {
|
||||
\ 'afterglow' : {
|
||||
\ 'typeface': 'FuraCode Nerd Font Mono Light',
|
||||
\ },
|
||||
\ 'anthraxylon' : {
|
||||
\ },
|
||||
\ 'ayu' : {
|
||||
\ },
|
||||
\ 'bluloco' : {
|
||||
\ },
|
||||
\ 'catppuccin' : {
|
||||
\ },
|
||||
\ 'dracula' : {
|
||||
\ 'typeface': 'FuraCode Nerd Font Mono Light',
|
||||
\ },
|
||||
\ 'embark' : {
|
||||
\ },
|
||||
\ 'kanagawa' : {
|
||||
\ },
|
||||
\ 'leuven' : {
|
||||
\ },
|
||||
\ 'lucius' : {
|
||||
\ },
|
||||
\ 'materiam' : {
|
||||
\ },
|
||||
\ 'melange' : {
|
||||
\ },
|
||||
\ 'modus-operandi' : {
|
||||
\ 'background': 'light',
|
||||
\ },
|
||||
\ 'modus-vivendi' : {
|
||||
\ },
|
||||
\ 'monochrome' : {
|
||||
\ },
|
||||
\ 'moonfly' : {
|
||||
\ },
|
||||
\ 'nightfox' : {
|
||||
\ },
|
||||
\ 'nightfly' : {
|
||||
\ },
|
||||
\ 'night-owl' : {
|
||||
\ },
|
||||
\ 'noirbuddy' : {
|
||||
\ },
|
||||
\ 'off' : {
|
||||
\ 'typeface': 'Cascadia Code Regular',
|
||||
\ },
|
||||
\ 'oxocarbon' : {
|
||||
\ },
|
||||
\ 'palenight' : {
|
||||
\ },
|
||||
\ 'palenightfall' : {
|
||||
\ },
|
||||
\ 'papaya' : {
|
||||
\ 'typeface': 'FuraCode Nerd Font Mono Light',
|
||||
\ },
|
||||
\ 'plain' : {
|
||||
\ },
|
||||
\ 'pencil_dark' :{ 'colorscheme': 'pencil',
|
||||
\ 'background': 'dark',
|
||||
\ 'ruler': 1,
|
||||
\ 'laststatus': 0,
|
||||
\ 'typeface': 'Dank Mono Italic',
|
||||
\ 'font-size': 11,
|
||||
\ 'transparency': 10,
|
||||
\ 'linespace': 8,
|
||||
\ },
|
||||
\ 'pencil_lite' :{ 'colorscheme': 'pencil',
|
||||
\ 'background': 'light',
|
||||
\ 'laststatus': 0,
|
||||
\ 'ruler': 1,
|
||||
\ 'typeface': 'FuraCode Nerd Font Mono Light',
|
||||
\ 'fullscreen': 1,
|
||||
\ 'transparency': 0,
|
||||
\ 'font-size': 11,
|
||||
\ 'linespace': 6,
|
||||
\ },
|
||||
\ 'pinkmare' : {
|
||||
\ },
|
||||
\ 'sacredforest' : {
|
||||
\ 'typeface': 'FuraCode Nerd Font Mono Light',
|
||||
\ },
|
||||
\ 'solarized' : {
|
||||
\ 'typeface': 'Victor Mono Regular Nerd Font Complete Mono',
|
||||
\ },
|
||||
\ 'solarized8' : {
|
||||
\ 'typeface': 'FuraCode Nerd Font Mono Light',
|
||||
\ },
|
||||
\ 'tender' : {
|
||||
\ },
|
||||
\ 'tokyonight' : {
|
||||
\ },
|
||||
\ 'tokyonight-night' : {
|
||||
\ },
|
||||
\ 'tokyonight-storm' : {
|
||||
\ },
|
||||
\ 'tokyonight-day' : {
|
||||
\ },
|
||||
\ 'tokyonight-moon' : {
|
||||
\ },
|
||||
\ }
|
||||
|
||||
|
||||
|
||||
let g:thematic#defaults = {
|
||||
\ 'background': 'dark',
|
||||
\ 'laststatus': 2,
|
||||
\ 'typeface': 'Dank Mono',
|
||||
\ 'font-size': 11,
|
||||
\ 'transparency': 10,
|
||||
\ 'linespace': 2,
|
||||
\ }
|
||||
|
||||
let g:thematic#theme_name = 'catppuccin'
|
||||
]])
|
||||
end
|
||||
}
|
||||
|
||||
1
lua/custom/plugins/themes/vim-theme-papaya.lua
Normal file
1
lua/custom/plugins/themes/vim-theme-papaya.lua
Normal file
|
|
@ -0,0 +1 @@
|
|||
return {'HenryNewcomer/vim-theme-papaya'}
|
||||
Loading…
Add table
Add a link
Reference in a new issue