30 lines
597 B
Lua
30 lines
597 B
Lua
return {
|
|
-- change lualine
|
|
{
|
|
"nvim-lualine/lualine.nvim",
|
|
event = "VeryLazy",
|
|
opts = function(_, opts)
|
|
opts.sections.lualine_b = { { "branch", icon = " " } }
|
|
end,
|
|
},
|
|
{
|
|
"NvChad/nvim-colorizer.lua",
|
|
opts = function(_, opts)
|
|
opts.filetypes = {
|
|
"html",
|
|
"css",
|
|
"scss",
|
|
"javascript",
|
|
"typescript",
|
|
"typescriptreact",
|
|
"javascriptreact",
|
|
"lua",
|
|
}
|
|
opts.user_default_options = {
|
|
mode = "background",
|
|
tailwind = false, -- Enable tailwind colors
|
|
}
|
|
end,
|
|
},
|
|
}
|