mirror of https://github.com/LazyVim/starter
35 lines
616 B
Lua
35 lines
616 B
Lua
return {
|
|
{
|
|
"neanias/everforest-nvim",
|
|
lazy = true,
|
|
opts = {
|
|
background = "medium",
|
|
},
|
|
config = function() end,
|
|
},
|
|
-- Disabled by conflict with neotree
|
|
-- {
|
|
-- "NvChad/nvim-colorizer.lua",
|
|
-- lazy = true,
|
|
-- event = "VeryLazy",
|
|
-- opts = {
|
|
-- tailwind = true,
|
|
-- },
|
|
-- },
|
|
{
|
|
"brenoprata10/nvim-highlight-colors",
|
|
lazy = true,
|
|
event = "BufReadPre",
|
|
opts = {
|
|
render = "virtual",
|
|
virtual_symbol = "",
|
|
enable_tailwind = true,
|
|
},
|
|
},
|
|
{
|
|
"kevinhwang91/nvim-ufo",
|
|
lazy = true,
|
|
event = "BufReadPre",
|
|
},
|
|
}
|