mirror of
https://github.com/nix-community/nixvim.git
synced 2025-07-21 11:14:40 +02:00
34 lines
752 B
Nix
34 lines
752 B
Nix
{
|
|
# empty test case is not needed since having it would make the warning throw an error
|
|
combine-plugins = {
|
|
performance.combinePlugins.enable = true;
|
|
plugins.oil = {
|
|
enable = true;
|
|
settings = {
|
|
win_options = {
|
|
signcolumn = "yes:2,";
|
|
};
|
|
};
|
|
};
|
|
plugins.oil-git-status = {
|
|
enable = true;
|
|
settings = {
|
|
show_ignored = false;
|
|
};
|
|
};
|
|
};
|
|
|
|
with-oil = {
|
|
# set settings.win_options.signcolumn since oil-git-status relies on that particular setting in order to function
|
|
plugins.oil = {
|
|
enable = true;
|
|
settings = {
|
|
win_options = {
|
|
signcolumn = "yes:2,";
|
|
};
|
|
};
|
|
};
|
|
plugins.oil-git-status.enable = true;
|
|
};
|
|
|
|
}
|