nix-community.nixvim/plugins/languages/ledger.nix

43 lines
1 KiB
Nix
Raw Normal View History

{
lib,
config,
helpers,
pkgs,
...
}:
with lib;
with helpers.vim-plugin;
mkVimPlugin config {
name = "ledger";
originalName = "vim-ledger";
package = pkgs.vimPlugins.vim-ledger;
globalPrefix = "ledger_";
addExtraConfigRenameWarning = true;
options = {
maxWidth = mkDefaultOpt {
global = "maxwidth";
description = "Number of columns to display foldtext";
type = types.int;
};
2021-03-18 10:03:55 +00:00
fillString = mkDefaultOpt {
global = "fillstring";
description = "String used to fill the space between account name and amount in the foldtext";
type = types.int;
};
2021-03-18 10:03:55 +00:00
detailedFirst = mkDefaultOpt {
global = "detailed_first";
description = "Account completion sorted by depth instead of alphabetically";
type = types.bool;
};
2021-03-18 10:03:55 +00:00
foldBlanks = mkDefaultOpt {
global = "fold_blanks";
description = "Hide blank lines following a transaction on a fold";
type = types.bool;
};
2021-03-18 10:03:55 +00:00
};
}