Add more colorschemes including my own port of farout

This commit is contained in:
2023-12-01 15:28:12 -05:00
parent 6d543e4409
commit 48e6eeeb7c
2 changed files with 36 additions and 3 deletions

View File

@@ -0,0 +1,67 @@
return {
{
"LazyVim/LazyVim",
opts = {
colorscheme = "gruvbox",
},
},
{
"ellisonleao/gruvbox.nvim",
opts = {
contrast = "hard",
palette_overrides = {
dark0_hard = "#131516",
dark1 = "#242424",
},
dim_inactive = true,
overrides = {
GruvboxAquaSign = { bg = "NONE" },
GruvboxBlueSign = { bg = "NONE" },
GruvboxGreenSign = { bg = "NONE" },
GruvboxOrangeSign = { bg = "NONE" },
GruvboxPurpleSign = { bg = "NONE" },
GruvboxRedSign = { bg = "NONE" },
GruvboxYellowSign = { bg = "NONE" },
SignColumn = { bg = "NONE" },
FoldColumn = { bg = "NONE" },
},
},
},
{
"arturgoms/moonbow.nvim",
opts = {
dim_inactive = true,
},
},
{
"rebelot/kanagawa.nvim",
opts = {
dimInactive = true,
},
},
{ "kdheepak/monochrome.nvim" },
{
"folke/tokyonight.nvim",
opts = {
style = "night",
dim_inactive = true,
},
},
{
"catppuccin/nvim",
name = "catppuccin",
opts = {
flavour = "mocha",
dim_inactive = {
enabled = true,
},
},
},
{
-- My own colorscheme, aka. thallada/farout.nvim
dir = "~/farout.nvim/",
opts = {
dim_inactive = true,
},
},
}