mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 16:39:00 +02:00
40 lines
1,009 B
Nix
40 lines
1,009 B
Nix
{
|
|
lib,
|
|
pkgs,
|
|
...
|
|
} @ args:
|
|
with lib;
|
|
with import ../helpers.nix {inherit lib;};
|
|
mkPlugin args {
|
|
name = "ledger";
|
|
description = "ledger language features";
|
|
package = pkgs.vimPlugins.vim-ledger;
|
|
|
|
globalPrefix = "ledger_";
|
|
|
|
options = {
|
|
maxWidth = mkDefaultOpt {
|
|
global = "maxwidth";
|
|
description = "Number of columns to display foldtext";
|
|
type = types.int;
|
|
};
|
|
|
|
fillString = mkDefaultOpt {
|
|
global = "fillstring";
|
|
description = "String used to fill the space between account name and amount in the foldtext";
|
|
type = types.int;
|
|
};
|
|
|
|
detailedFirst = mkDefaultOpt {
|
|
global = "detailed_first";
|
|
description = "Account completion sorted by depth instead of alphabetically";
|
|
type = types.bool;
|
|
};
|
|
|
|
foldBlanks = mkDefaultOpt {
|
|
global = "fold_blanks";
|
|
description = "Hide blank lines following a transaction on a fold";
|
|
type = types.bool;
|
|
};
|
|
};
|
|
}
|