nix-community.nixvim/tests/test-sources/plugins/by-name/ledger/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

44 lines
1,006 B
Nix
Raw Normal View History

2024-03-02 22:36:26 +01:00
{
empty = {
plugins.ledger.enable = true;
};
defaults = {
plugins.ledger = {
enable = true;
settings = {
bin = null;
is_hledger = null;
extra_options = "";
accounts_cmd = null;
descriptions_cmd = null;
maxwidth = 0;
fillstring = " ";
2024-09-08 13:52:18 +01:00
detailed_first = 1;
fold_blanks = 0;
2024-03-02 22:36:26 +01:00
decimal_sep = ".";
2024-09-08 13:52:18 +01:00
align_last = 0;
2024-03-02 22:36:26 +01:00
align_at = 60;
default_commodity = "";
2024-09-08 13:52:18 +01:00
align_commodity = 0;
commodity_before = 1;
2024-03-02 22:36:26 +01:00
commodity_sep = "";
2024-09-08 13:52:18 +01:00
commodity_spell = 0;
2024-03-02 22:36:26 +01:00
date_format = "%Y/%m/%d";
main = "%";
winpos = "B";
qf_register_format = null;
qf_reconcile_format = null;
2024-09-08 13:52:18 +01:00
use_location_list = 0;
qf_vertical = 0;
2024-03-02 22:36:26 +01:00
qf_size = 10;
2024-09-08 13:52:18 +01:00
qf_hide_file = 1;
2024-03-02 22:36:26 +01:00
cleared_string = "Cleared: ";
pending_string = "Cleared or pending: ";
target_string = "Difference from target: ";
};
};
};
}