mirror of
https://github.com/NotAShelf/nvf.git
synced 2024-11-01 19:11:15 +00:00
74 lines
2.8 KiB
Nix
74 lines
2.8 KiB
Nix
{
|
|
config,
|
|
lib,
|
|
...
|
|
}: let
|
|
inherit (lib.modules) mkIf mkMerge;
|
|
inherit (lib.trivial) boolToString;
|
|
inherit (lib.nvim.dag) entryAnywhere;
|
|
inherit (lib.nvim.lua) toLuaObject;
|
|
inherit (lib.generators) mkLuaInline;
|
|
|
|
cfg = config.vim.statusline.lualine;
|
|
breadcrumbsCfg = config.vim.ui.breadcrumbs;
|
|
in {
|
|
config = mkMerge [
|
|
# TODO: move into nvim-tree file
|
|
(mkIf (config.vim.filetree.nvimTree.enable) {
|
|
vim.statusline.lualine.setupOpts = {
|
|
extensions = ["nvim-tree"];
|
|
};
|
|
})
|
|
(mkIf (breadcrumbsCfg.enable && breadcrumbsCfg.source == "nvim-navic") {
|
|
vim.statusline.lualine.setupOpts = {
|
|
# TODO: rewrite in new syntax
|
|
winbar.lualine_c = [
|
|
"navic"
|
|
(mkLuaInline "draw_empty = ${boolToString config.vim.ui.breadcrumbs.alwaysRender}")
|
|
];
|
|
};
|
|
})
|
|
(mkIf cfg.enable {
|
|
vim.startPlugins = [
|
|
"lualine"
|
|
];
|
|
|
|
vim.luaConfigRC.lualine = entryAnywhere ''
|
|
local lualine = require('lualine')
|
|
lualine.setup ${toLuaObject cfg.setupOpts}
|
|
'';
|
|
|
|
# this is for backwards-compatibility
|
|
vim.statusline.lualine.setupOpts = {
|
|
options = {
|
|
icons_enabled = cfg.icons.enable;
|
|
theme = cfg.theme;
|
|
component_separators = [cfg.componentSeparator.left cfg.componentSeparator.right];
|
|
section_separators = [cfg.sectionSeparator.left cfg.sectionSeparator.right];
|
|
globalstatus = cfg.globalStatus;
|
|
refresh = cfg.refresh;
|
|
};
|
|
|
|
sections = {
|
|
lualine_a = builtins.map mkLuaInline (cfg.activeSection.a ++ cfg.extraActiveSection.a);
|
|
lualine_b = builtins.map mkLuaInline (cfg.activeSection.b ++ cfg.extraActiveSection.b);
|
|
lualine_c = builtins.map mkLuaInline (cfg.activeSection.c ++ cfg.extraActiveSection.c);
|
|
lualine_x = builtins.map mkLuaInline (cfg.activeSection.x ++ cfg.extraActiveSection.x);
|
|
lualine_y = builtins.map mkLuaInline (cfg.activeSection.y ++ cfg.extraActiveSection.y);
|
|
lualine_z = builtins.map mkLuaInline (cfg.activeSection.z ++ cfg.extraActiveSection.z);
|
|
};
|
|
inactive_sections = {
|
|
lualine_a = builtins.map mkLuaInline (cfg.inactiveSection.a ++ cfg.extraInactiveSection.a);
|
|
lualine_b = builtins.map mkLuaInline (cfg.inactiveSection.b ++ cfg.extraInactiveSection.b);
|
|
lualine_c = builtins.map mkLuaInline (cfg.inactiveSection.c ++ cfg.extraInactiveSection.c);
|
|
lualine_x = builtins.map mkLuaInline (cfg.inactiveSection.x ++ cfg.extraInactiveSection.x);
|
|
lualine_y = builtins.map mkLuaInline (cfg.inactiveSection.y ++ cfg.extraInactiveSection.y);
|
|
lualine_z = builtins.map mkLuaInline (cfg.inactiveSection.z ++ cfg.extraInactiveSection.z);
|
|
};
|
|
# probably don't need this?
|
|
tabline = [];
|
|
};
|
|
})
|
|
];
|
|
}
|