mirror of
https://github.com/NotAShelf/nvf.git
synced 2024-11-01 19:11:15 +00:00
f9789432f9
* modules: switch to gerg's neovim-wrapper * modules: use initViml instead of writing the file * treewide: make the entire generated config lua based * docs: remove mentions of configRC * plugins/treesitter: remove vim.cmd hack * treewide: move resolveDag to lib * modules/wrapper(rc): fix typo * treewide: migrate to pluginRC for correct DAG order The "new" DAG order is as follows: - (luaConfigPre) - globalsScript - basic - theme - pluginConfigs - extraPluginConfigs - mappings - (luaConfigPost) * plugins/theme: fix theme DAG place * plugins/theme: fix fixed theme DAG place * modules/wrapper(rc): add removed option module for configRC * docs: add dag-entries chapter, add release note entry * fix: formatting CI * languages/nix: add missing `local` * docs: fix page link * docs: add mention of breaking changes at the start of the release notes * plugins/neo-tree: convert to pluginRC * modules/wrapper(rc): add back entryAnywhere * modules/wrapper(rc): expose pluginRC * apply raf patch --------- Co-authored-by: NotAShelf <raf@notashelf.dev>
79 lines
3.2 KiB
Nix
79 lines
3.2 KiB
Nix
{
|
|
config,
|
|
lib,
|
|
...
|
|
}: let
|
|
inherit (builtins) map;
|
|
inherit (lib.modules) mkIf mkMerge mkDefault;
|
|
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 = mkDefault [
|
|
[
|
|
"navic"
|
|
(mkLuaInline "draw_empty = ${boolToString config.vim.ui.breadcrumbs.alwaysRender}")
|
|
]
|
|
];
|
|
};
|
|
})
|
|
(mkIf cfg.enable {
|
|
vim = {
|
|
startPlugins = ["lualine"];
|
|
|
|
pluginRC.lualine = entryAnywhere ''
|
|
local lualine = require('lualine')
|
|
lualine.setup ${toLuaObject cfg.setupOpts}
|
|
'';
|
|
|
|
# this is for backwards-compatibility
|
|
# NOTE: since lualine relies heavily on mixed list + key-value table syntax in lua e.g. {1, 2, three = 3}
|
|
# and we don't have a good syntax for that we're keeping the old options for now
|
|
statusline.lualine.setupOpts = {
|
|
options = {
|
|
icons_enabled = mkDefault cfg.icons.enable;
|
|
theme = mkDefault cfg.theme;
|
|
component_separators = mkDefault [cfg.componentSeparator.left cfg.componentSeparator.right];
|
|
section_separators = mkDefault [cfg.sectionSeparator.left cfg.sectionSeparator.right];
|
|
globalstatus = mkDefault cfg.globalStatus;
|
|
refresh = mkDefault cfg.refresh;
|
|
always_divide_middle = mkDefault cfg.alwaysDivideMiddle;
|
|
};
|
|
|
|
sections = {
|
|
lualine_a = mkDefault (map mkLuaInline (cfg.activeSection.a ++ cfg.extraActiveSection.a));
|
|
lualine_b = mkDefault (map mkLuaInline (cfg.activeSection.b ++ cfg.extraActiveSection.b));
|
|
lualine_c = mkDefault (map mkLuaInline (cfg.activeSection.c ++ cfg.extraActiveSection.c));
|
|
lualine_x = mkDefault (map mkLuaInline (cfg.activeSection.x ++ cfg.extraActiveSection.x));
|
|
lualine_y = mkDefault (map mkLuaInline (cfg.activeSection.y ++ cfg.extraActiveSection.y));
|
|
lualine_z = mkDefault (map mkLuaInline (cfg.activeSection.z ++ cfg.extraActiveSection.z));
|
|
};
|
|
|
|
inactive_sections = {
|
|
lualine_a = mkDefault (map mkLuaInline (cfg.inactiveSection.a ++ cfg.extraInactiveSection.a));
|
|
lualine_b = mkDefault (map mkLuaInline (cfg.inactiveSection.b ++ cfg.extraInactiveSection.b));
|
|
lualine_c = mkDefault (map mkLuaInline (cfg.inactiveSection.c ++ cfg.extraInactiveSection.c));
|
|
lualine_x = mkDefault (map mkLuaInline (cfg.inactiveSection.x ++ cfg.extraInactiveSection.x));
|
|
lualine_y = mkDefault (map mkLuaInline (cfg.inactiveSection.y ++ cfg.extraInactiveSection.y));
|
|
lualine_z = mkDefault (map mkLuaInline (cfg.inactiveSection.z ++ cfg.extraInactiveSection.z));
|
|
};
|
|
};
|
|
};
|
|
})
|
|
];
|
|
}
|