Caution
I no longer use lualine.nvim. This plugin is now archived.
A lualine.nvim theme integration for flexoki.nvim, an inky color scheme for Neovim. Based on stephango.com/flexoki.
- Supports all lualine modes with Flexoki colors
- Automatic light/dark theme switching
- Inactive window styling
lazy.nvim
{
"cpplain/flexoki.nvim",
lazy = false,
priority = 1000,
},
{
"cpplain/flexoki-lualine.nvim",
dependencies = { "cpplain/flexoki.nvim" },
}
-- Load flexoki color scheme
require("flexoki").setup()
vim.cmd.colorscheme("flexoki")
-- Configure lualine theme
require("lualine").setup({
options = {
theme = "flexoki",
},
})
The theme automatically adapts when switching between light and dark backgrounds with vim.o.background
.
See cpplain/flexoki.nvim for complete color scheme documentation and configuration options.