feat(editor): make nvim default editor
This commit is contained in:
parent
6d307d59cc
commit
0adab73e22
1 changed files with 4 additions and 1 deletions
|
@ -112,7 +112,9 @@ in {
|
||||||
source = treesitterWithGrammars;
|
source = treesitterWithGrammars;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
home.sessionVariables = {
|
||||||
|
EDITOR = "nvim";
|
||||||
|
};
|
||||||
accounts.email.accounts = {
|
accounts.email.accounts = {
|
||||||
"mrflos@chmok.net" = {
|
"mrflos@chmok.net" = {
|
||||||
realName = "Florian Schmitt";
|
realName = "Florian Schmitt";
|
||||||
|
@ -220,6 +222,7 @@ in {
|
||||||
extraConfig = {
|
extraConfig = {
|
||||||
pull.rebase = true;
|
pull.rebase = true;
|
||||||
init.defaultBranch = "main";
|
init.defaultBranch = "main";
|
||||||
|
core.editor = "nvim";
|
||||||
core.fileMode = false;
|
core.fileMode = false;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue