mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 16:39:00 +02:00
22 lines
503 B
Nix
22 lines
503 B
Nix
{
|
|
empty = {
|
|
plugins.committia.enable = true;
|
|
};
|
|
|
|
default = {
|
|
plugins.committia = {
|
|
enable = true;
|
|
|
|
settings = {
|
|
open_only_vim_starting = true;
|
|
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;
|
|
};
|
|
};
|
|
};
|
|
}
|