mirror of https://github.com/sgoudham/dotfiles.git
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.
28 lines
632 B
Lua
28 lines
632 B
Lua
return {
|
|
{
|
|
"feline-nvim/feline.nvim",
|
|
config = function()
|
|
local feline = require("feline")
|
|
local ctp_feline = require("catppuccin.groups.integrations.feline")
|
|
|
|
feline.setup({
|
|
components = ctp_feline.get(),
|
|
force_inactive = {
|
|
filetypes = {
|
|
-- "^NvimTree$",
|
|
"^packer$",
|
|
"^startify$",
|
|
"^fugitive$",
|
|
"^fugitiveblame$",
|
|
"^qf$",
|
|
"^help$",
|
|
},
|
|
},
|
|
})
|
|
-- catppuccin statusline
|
|
ctp_feline.setup({})
|
|
end,
|
|
dependencies = { "nvim-tree/nvim-web-devicons" },
|
|
},
|
|
}
|