mirror of
https://github.com/nix-community/nixvim.git
synced 2025-07-30 23:55:15 +02:00
See: - https://github.com/refractalize/oil-git-status.nvim#configuration - https://neovim.io/doc/user/options.html#'signcolumn'
34 lines
750 B
Nix
34 lines
750 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;
|
|
};
|
|
|
|
}
|