feat: migrating neovim
This commit is contained in:
parent
86266f8205
commit
8d5e0e6566
47 changed files with 1964 additions and 222 deletions
20
home-manager/modules/neovim/plugins/git-conflict.nix
Normal file
20
home-manager/modules/neovim/plugins/git-conflict.nix
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
_: {
|
||||
programs.nixvim = {
|
||||
plugins = {
|
||||
git-conflict = {
|
||||
enable = true;
|
||||
|
||||
settings = {
|
||||
default_mappings = {
|
||||
ours = "co";
|
||||
theirs = "ct";
|
||||
none = "c0";
|
||||
both = "cb";
|
||||
next = "]x";
|
||||
prev = "[x";
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue