mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 00:25:42 +02:00
plugins/oil-git-status: init
This commit is contained in:
parent
36d63a7c3e
commit
aa1ae69b57
2 changed files with 115 additions and 0 deletions
|
@ -0,0 +1,34 @@
|
|||
{
|
||||
# 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;
|
||||
};
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue