You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
482 B
Lua

return {
{
"feline-nvim/feline.nvim",
config = function()
local feline = require("feline")
feline.setup({
components = require("extra.feline").get(),
force_inactive = {
filetypes = {
"^lazy$",
"^startify$",
"^fugitive$",
"^fugitiveblame$",
"^qf$",
"^help$",
},
},
})
end,
dependencies = { "nvim-tree/nvim-web-devicons" },
},
}