1
0

Restructure colorschemes and other visual plugins

This commit is contained in:
Patrick Auernig 2024-05-24 14:12:01 +02:00
parent 871a816d5c
commit a14af6d590
3 changed files with 54 additions and 50 deletions

View File

@ -0,0 +1,39 @@
local ayu_spec = {
"valeth/ayu-nvim",
branch = "fold-column-fg",
enabled = false,
lazy = false,
priority = 1000,
config = function()
vim.g.ayu_mirage = true
vim.cmd.colorscheme("ayu")
end
}
local catppuccin_spec = {
"catppuccin/nvim",
name = "catppuccin",
enabled = true,
lazy = false,
priority = 1000,
config = function()
require("catppuccin").setup({
transparent_background = true,
custom_highlights = function(colors)
return {
Folded = { bg = colors.none },
UfoFoldedEllipsis = { fg = colors.blue, bg = colors.none },
}
end,
integrations = {
notify = true,
}
})
vim.cmd.colorscheme("catppuccin")
end
}
return {
ayu_spec, catppuccin_spec
}

View File

@ -1,50 +0,0 @@
return {
{
"valeth/ayu-nvim",
branch = "fold-column-fg",
enabled = false,
lazy = false,
priority = 1000,
config = function()
vim.g.ayu_mirage = true
vim.cmd.colorscheme("ayu")
end
},
{
"catppuccin/nvim",
name = "catppuccin",
enabled = true,
lazy = false,
priority = 1000,
config = function()
require("catppuccin").setup({
transparent_background = true,
custom_highlights = function(colors)
return {
Folded = { bg = colors.none },
UfoFoldedEllipsis = { fg = colors.blue, bg = colors.none },
}
end,
integrations = {
notify = true,
}
})
vim.cmd.colorscheme("catppuccin")
end
},
{
"lukas-reineke/indent-blankline.nvim",
main = "ibl",
opts = {
scope = {
show_start = false,
}
},
dependencies = {
"nvim-treesitter/nvim-treesitter",
}
},
}

View File

@ -0,0 +1,15 @@
local spec = {
"lukas-reineke/indent-blankline.nvim",
dependencies = {
"nvim-treesitter/nvim-treesitter",
},
main = "ibl",
}
spec.opts = {
scope = {
show_start = false,
}
}
return spec