fix(oracle): make neovim default editor

This commit is contained in:
Michael Thomas 2024-04-15 23:32:15 +00:00
parent f413a786b8
commit e3020dd7b5
2 changed files with 5 additions and 1 deletions

View File

@ -16,6 +16,7 @@
}; };
programs.zsh.enable = true; programs.zsh.enable = true;
environment.variables.EDITOR = "nvim";
users.users.michael = { users.users.michael = {
isNormalUser = true; isNormalUser = true;

View File

@ -5,9 +5,12 @@
]; ];
home.packages = with pkgs; [ home.packages = with pkgs; [
neovim
lazygit lazygit
]; ];
programs.neovim = {
enable = true;
};
home.stateVersion = "21.05"; home.stateVersion = "21.05";
} }