mirror of
https://github.com/NotAShelf/nvf.git
synced 2025-02-24 20:38:47 +00:00
24 lines
597 B
Nix
24 lines
597 B
Nix
{
|
|
config,
|
|
lib,
|
|
...
|
|
}: let
|
|
inherit (lib.modules) mkIf mkDefault;
|
|
inherit (lib.nvim.dag) entryAnywhere;
|
|
inherit (lib.nvim.lua) toLuaObject;
|
|
|
|
cfg = config.vim.ui.fastaction;
|
|
borderCfg = config.vim.ui.borders.plugins.fastaction;
|
|
in {
|
|
config = mkIf cfg.enable {
|
|
vim = {
|
|
ui.fastaction.setupOpts = {
|
|
register_ui_select = mkDefault true;
|
|
popup.border = mkIf borderCfg.enable borderCfg.style;
|
|
};
|
|
|
|
startPlugins = ["fastaction-nvim"];
|
|
pluginRC.fastaction = entryAnywhere "require('fastaction').setup(${toLuaObject cfg.setupOpts})";
|
|
};
|
|
};
|
|
}
|