home-manager: set EDITOR and VISUAL to vim

This commit is contained in:
Luke Granger-Brown 2020-11-01 18:11:48 +00:00
parent 414f303113
commit 9499761e7f

View file

@ -7,6 +7,10 @@
home.file = { home.file = {
".hgrc".source = ./hgrc; ".hgrc".source = ./hgrc;
}; };
home.sessionVariables = {
EDITOR = "vim";
VISUAL = "vim";
};
programs.bash = { programs.bash = {
enable = true; enable = true;