nix-config/modules/neovim.nix
Donovan Glover 103c78ead1
feat: Add direnv
Makes it possible to cd into directories with nix flakes and
automatically have a development environment set up.
2023-10-25 13:46:14 -04:00

10 lines
153 B
Nix

{
programs.neovim.enable = true;
programs.direnv.enable = true;
environment.sessionVariables = {
EDITOR = "nvim";
VISUAL = "nvim";
};
}