1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-12-09 02:21:07 +01:00
nixvim/plugins/by-name/ledger/default.nix
2025-12-07 23:34:03 +00:00

21 lines
464 B
Nix

{
lib,
...
}:
lib.nixvim.plugins.mkVimPlugin {
name = "ledger";
package = "vim-ledger";
globalPrefix = "ledger_";
description = "Filetype detection, syntax highlighting, auto-formatting, auto-completion, and other tools for working with ledger files.";
maintainers = [ lib.maintainers.GaetanLepage ];
dependencies = [ "ledger" ];
settingsExample = {
detailed_first = 1;
fold_blanks = 0;
maxwidth = 80;
fillstring = " ";
};
}