This is a opinionated feline config designed to be used as a plugin. It automatically picks colors from applied colorscheme.
Note: feline.nvim is archived, so there is no reason for this plugin to stay. Consider moving to Heirline.nvim. You can use my config of it.
- Neovim >= 0.8
- feline.nvim
- nvim-treesitter (optional)
use {
"Hitesh-Aggarwal/feline_theme.nvim",
-- after = [Applied colorscheme here]
config = function()
require("feline_theme").setup()
end
}
Plug 'Hitesh-Aggarwal/feline_theme.nvim'
" Anywhere in your config:
lua << EOF
config = function()
require("feline_theme").setup()
end
EOF
return {
"Hitesh-Aggarwal/feline_theme.nvim",
-- dependencies = {
-- [[ Applied colorscheme here ]]
-- Or you can set the priority of your colorscheme to 1000 so that it loads first.
-- }
config = function()
require("feline_theme").setup()
end
}
require("feline_theme").setup({
-- Change any of these colors. Do no add your own. They will have no effect.
-- fg = "#ffffff",
-- bg = "#333333",
-- green = "#00ff00",
-- yellow = "#ffff00",
-- purple = "#a020f0",
-- orange = "#ffa500",
-- red = "#ff0000",
-- blue = "#0000ff",
})
Please consider raising a pull request for improvements