feat: use tune

This commit is contained in:
Thomas Alcala Schneider 2023-05-28 08:16:33 +02:00
parent a0181df32b
commit 8367258924
69 changed files with 8 additions and 17 deletions

View file

@ -0,0 +1 @@
return { 'AlessandroYorba/Alduin' }

View file

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

View file

@ -0,0 +1 @@
return { 'romainl/Apprentice' }

View file

@ -0,0 +1 @@
return { 'frenzyexists/aquarium-vim' }

View file

@ -0,0 +1 @@
return { 'AhmedAbdulrahman/aylin.vim' }

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 @@
return { 'kyazdani42/blue-moon' }

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,4 @@
return {
'challenger-deep-theme/vim',
name = 'challenger_deep',
}

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 @@
return { 'hachy/eva01.vim' }

View file

@ -0,0 +1 @@
return { 'Everblush/nvim', name = 'everblush' }

View file

@ -0,0 +1 @@
return { 'fenetikm/falcon' }

View file

@ -0,0 +1 @@
return { 'romainl/flattened' }

View file

@ -0,0 +1,4 @@
return {
'bkegley/gloombuddy',
dependencies = { 'tjdevries/colorbuddy.nvim', branch = 'dev' },
}

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.colorschemes' }

View file

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

View file

@ -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,
}

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 { 'dikiaap/minimalist' }

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 { 'rafamadriz/neon' }

View file

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

View file

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

View file

@ -0,0 +1,28 @@
return {
'andersevenrud/nordic.nvim',
config = function()
-- The table used in this example contains the default settings.
-- Modify or remove these to your liking (this also applies to alternatives below):
require('nordic').colorscheme {
-- Underline style used for spelling
-- Options: 'none', 'underline', 'undercurl'
underline_option = 'none',
-- Italics for certain keywords such as constructors, functions,
-- labels and namespaces
italic = true,
-- Italic styled comments
italic_comments = false,
-- Minimal mode: different choice of colors for Tabs and StatusLine
minimal_mode = false,
-- Darker backgrounds for certain sidebars, popups, etc.
-- Options: true, false, or a table of explicit names
-- Supported: terminal, qf, vista_kind, packer, nvim-tree, telescope, whichkey
alternate_backgrounds = false,
-- Callback function to define custom color groups
-- See 'lua/nordic/colors/example.lua' for example defitions
custom_colors = function(c, s, cs)
return {}
end,
}
end,
}

View file

@ -0,0 +1 @@
return { 'theniceboy/nvim-deus' }

View file

@ -0,0 +1,8 @@
return {
'PHSix/nvim-hybrid',
config = function()
require('hybrid').setup()
-- or use
-- vim.cmd [[colorscheme nvim-hybrid]]
end,
}

View file

@ -0,0 +1,7 @@
return {
'kaiuri/nvim-juliana',
lazy = false,
opts = { --[=[ configuration --]=]
},
config = true,
}

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 { 'nyngwang/nvimgelion' }

View file

@ -0,0 +1 @@
return { 'mhartington/oceanic-next' }

View file

@ -0,0 +1 @@
return { 'Yazeed1s/oh-lucy.nvim' }

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,6 @@
return {
'kyoz/purify',
config = function(plugin)
vim.opt.rtp:append(plugin.dir .. '/vim')
end,
}

View file

@ -0,0 +1 @@
return { 'kvrohit/rasmus.nvim' }

View file

@ -0,0 +1,7 @@
return {
'rose-pine/neovim',
name = 'rose-pine',
config = function()
vim.cmd 'colorscheme rose-pine'
end,
}

View file

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

View file

@ -0,0 +1 @@
return { 'liuchengxu/space-vim-dark' }

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 { 'romainl/vim-dichromatic' }

View file

@ -0,0 +1,6 @@
return {
'wuelnerdotexe/vim-enfocado',
config = function()
vim.g.enfocado_style = 'neon' -- or 'nature'
end,
}

View file

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

View file

@ -0,0 +1 @@
return { 'whatyouhide/vim-gotham' }

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,6 @@
return {
'patstockwell/vim-monokai-tasty',
config = function()
vim.g.monokai_tasty_italic_comments = true
end,
}

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 { 'sts10/vim-pink-moon' }

View file

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

View file

@ -0,0 +1,200 @@
return {
'preservim/vim-thematic',
config = function()
vim.cmd [[
let g:thematic#themes = {
\ 'afterglow' : {
\ 'typeface': 'FuraCode Nerd Font Mono Light',
\ },
\ 'alduin' : {
\ },
\ 'anthraxylon' : {
\ },
\ 'apprentice' : {
\ },
\ 'aquarium' : {
\ },
\ 'aylin' : {
\ },
\ 'ayu' : {
\ },
\ 'blue-moon' : {
\ },
\ 'bluloco' : {
\ },
\ 'catppuccin' : {
\ },
\ 'challenger_deep' : {
\ },
\ 'deus' : {
\ },
\ 'dichromatic' : {
\ },
\ 'dracula' : {
\ 'typeface': 'FuraCode Nerd Font Mono Light',
\ },
\ 'embark' : {
\ },
\ 'enfocado' : {
\ },
\ 'eva01' : {
\ },
\ 'everblush' : {
\ },
\ 'falcon' : {
\ },
\ 'flattened' : {
\ },
\ 'gloombuddy' : {
\ },
\ 'gotham' : {
\ },
\ 'hybrid' : {
\ },
\ 'juliana' : {
\ },
\ 'kanagawa' : {
\ },
\ 'leuven' : {
\ },
\ 'lucius' : {
\ },
\ 'malifluous' : {
\ },
\ 'materiam' : {
\ },
\ 'melange' : {
\ },
\ 'minimalist' : {
\ },
\ 'modus-operandi' : {
\ 'background': 'light',
\ },
\ 'modus-vivendi' : {
\ },
\ 'monochrome' : {
\ },
\ 'moonfly' : {
\ },
\ 'neon' : {
\ },
\ 'nightfox' : {
\ },
\ 'nightfly' : {
\ },
\ 'night-owl' : {
\ },
\ 'noirbuddy' : {
\ },
\ 'nordic' : {
\ },
\ 'nvimgelion' : {
\ },
\ 'oceanic-next' : {
\ },
\ 'off' : {
\ 'typeface': 'Cascadia Code Regular',
\ },
\ 'oh-lucy' : {
\ },
\ '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,
\ },
\ 'pink-moon' : {
\ },
\ 'pinkmare' : {
\ },
\ 'purify' : {
\ },
\ 'rasmus' : {
\ },
\ 'rose-pine' : {
\ },
\ 'sacredforest' : {
\ 'typeface': 'FuraCode Nerd Font Mono Light',
\ },
\ 'solarized' : {
\ 'typeface': 'Victor Mono Regular Nerd Font Complete Mono',
\ },
\ 'solarized8' : {
\ 'typeface': 'FuraCode Nerd Font Mono Light',
\ },
\ 'space-vim-dark' : {
\ },
\ 'tender' : {
\ },
\ 'tokyonight' : {
\ },
\ 'tokyonight-night' : {
\ },
\ 'tokyonight-storm' : {
\ },
\ 'tokyonight-day' : {
\ },
\ 'tokyonight-moon' : {
\ },
\ 'vim-monokai-tasty' : {
\ },
\ 'zephyr' : {
\ },
\ }
let g:thematic#defaults = {
\ 'background': 'dark',
\ 'laststatus': 2,
\ 'typeface': 'Dank Mono',
\ 'font-size': 11,
\ 'transparency': 10,
\ 'linespace': 2,
\ }
let g:thematic#theme_name = 'catppuccin'
]]
-- Retrieve all mappings
local mappings = vim.api.nvim_get_keymap ''
-- Iterate through the mappings to find and remove any existing ones for the commands
for _, mapping in ipairs(mappings) do
if mapping.cmd == 'ThematicRandom' or mapping.cmd == 'ThematicCatppuccino' then
-- Remove existing mappings
vim.api.nvim_del_keymap(mapping.mode, mapping.lhs)
end
end
-- Set new mapping for ThematicRandom
vim.api.nvim_set_keymap('n', '<leader>tr', ':ThematicRandom<CR>', { silent = true })
-- Set new mapping for ThematicCatppuccino
vim.api.nvim_set_keymap('n', '<leader>tc', ':Thematic catppuccin<CR>', { silent = true })
end,
}

View file

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

View file

@ -0,0 +1 @@
return { 'nvimdev/zephyr-nvim' }