Set vim as default editor on wsl

This commit is contained in:
Nathan McCarty 2024-11-29 04:12:35 +00:00
parent e06aaeaf71
commit b366c413d8

View file

@ -28,6 +28,12 @@
programs.command-not-found.enable = true;
home.stateVersion = "24.11";
programs.home-manager.enable = true;
# Machine specific configuration
programs.nushell.environmentVariables = {
VISUAL = "nvim";
EDITOR = "nvim";
};
}
)
];