Restructure colorschemes and other visual plugins
This commit is contained in:
parent
871a816d5c
commit
a14af6d590
39
lua/valeth/plugins/colorschemes.lua
Normal file
39
lua/valeth/plugins/colorschemes.lua
Normal 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
|
||||||
|
}
|
@ -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",
|
|
||||||
}
|
|
||||||
},
|
|
||||||
}
|
|
15
lua/valeth/plugins/indent-blankline.lua
Normal file
15
lua/valeth/plugins/indent-blankline.lua
Normal 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
|
Loading…
Reference in New Issue
Block a user