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

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

30 lines
603 B
Nix
Raw Normal View History

2024-02-10 17:04:22 +00:00
{
empty = {
plugins.committia.enable = true;
};
default = {
plugins.committia = {
enable = true;
settings = {
2024-09-08 13:52:18 +01:00
open_only_vim_starting = 1;
2024-02-10 17:04:22 +00:00
use_singlecolumn = "always";
min_window_width = 160;
status_window_opencmd = "belowright split";
diff_window_opencmd = "botright vsplit";
singlecolumn_diff_window_opencmd = "belowright split";
edit_window_width = 80;
status_window_min_height = 0;
};
};
};
2024-08-29 14:56:01 -05:00
no-packages = {
plugins.committia = {
enable = true;
gitPackage = null;
};
};
2024-02-10 17:04:22 +00:00
}