mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-20 16:15:43 +02:00
28 lines
599 B
Nix
28 lines
599 B
Nix
{
|
|
empty = {
|
|
plugins.committia.enable = true;
|
|
};
|
|
|
|
default = {
|
|
plugins.committia = {
|
|
enable = true;
|
|
|
|
settings = {
|
|
open_only_vim_starting = 1;
|
|
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;
|
|
};
|
|
};
|
|
};
|
|
|
|
no-packages = {
|
|
plugins.committia.enable = true;
|
|
|
|
dependencies.git.enable = false;
|
|
};
|
|
}
|