feat: add all plugins from the old config

This commit is contained in:
Thomas Alcala Schneider 2023-03-22 16:54:27 +01:00
parent 4a37a0a9b1
commit 1fd5843cf1
No known key found for this signature in database
GPG key ID: 24BE5CF48622091B
55 changed files with 401 additions and 0 deletions

View file

@ -0,0 +1 @@
return { 'high-moctane/anthraxylon', branch = 'main' }

View file

@ -0,0 +1,7 @@
return {
'ayu-theme/ayu-vim',
config = function()
-- light, mirage, dark
vim.cmd([[ let ayucolor="mirage" ]])
end
}

View file

@ -0,0 +1,4 @@
return {
'uloco/bluloco.nvim',
dependencies = { 'rktjmp/lush.nvim' }
}

View 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
}

View file

@ -0,0 +1 @@
return { 'dracula/vim', name = 'dracula' }

View file

@ -0,0 +1 @@
return { 'embark-theme/vim', name = 'embark', branch = 'main' }

View 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" }

View file

@ -0,0 +1 @@
return { "rebelot/kanagawa.nvim" }

View file

@ -0,0 +1 @@
return { 'kaicataldo/material.vim', branch = 'main' }

View file

@ -0,0 +1 @@
return {'savq/melange'}

View file

@ -0,0 +1 @@
return {'ishan9299/modus-theme-vim'}

View file

@ -0,0 +1 @@
return {'fxn/vim-monochrome'}

View file

@ -0,0 +1 @@
return {'haishanh/night-owl.vim'}

View file

@ -0,0 +1 @@
return {"EdenEast/nightfox.nvim"}

View file

@ -0,0 +1,9 @@
return {
"jesseleite/nvim-noirbuddy",
dependencies = { "tjdevries/colorbuddy.nvim", branch = "dev" },
config = function()
require('noirbuddy').setup {
preset = 'miami-nights',
}
end
}

View file

@ -0,0 +1 @@
return { 'nyoom-engineering/oxocarbon.nvim' }

View file

@ -0,0 +1 @@
return {'drewtempelmeyer/palenight.vim'}

View file

@ -0,0 +1 @@
return {'JoosepAlviste/palenightfall.nvim'}

View file

@ -0,0 +1 @@
return {'matsuuu/pinkmare'}

View file

@ -0,0 +1 @@
return {'KKPMW/sacredforest-vim'}

View file

@ -0,0 +1 @@
return {'jacoborus/tender.vim'}

View file

@ -0,0 +1 @@
return {'folke/tokyonight.nvim'}

View file

@ -0,0 +1 @@
return { 'danilo-augusto/vim-afterglow'}

View file

@ -0,0 +1 @@
return { 'pbrisbin/vim-colors-off', branch = 'main' }

View file

@ -0,0 +1 @@
return {'reedes/vim-colors-pencil'}

View file

@ -0,0 +1 @@
return {'andreypopp/vim-colors-plain'}

View file

@ -0,0 +1 @@
return {'altercation/vim-colors-solarized'}

View file

@ -0,0 +1 @@
return { 'kkga/vim-envy' }

View 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
}

View file

@ -0,0 +1 @@
return {'jonathanfilip/vim-lucius'}

View file

@ -0,0 +1 @@
return { 'bluz71/vim-moonfly-colors', branch = 'cterm-compat' }

View file

@ -0,0 +1 @@
return {'bluz71/vim-nightfly-colors'}

View file

@ -0,0 +1 @@
return {'lifepillar/vim-solarized8'}

View 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
}

View file

@ -0,0 +1 @@
return {'HenryNewcomer/vim-theme-papaya'}