feat(editor): make nvim default editor

This commit is contained in:
Florian Schmitt 2024-03-25 09:05:43 +03:00
parent 6d307d59cc
commit 0adab73e22

View file

@ -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;
}; };
}; };