nixos/home/editor/neovim/default.nix

10 lines
150 B
Nix

{ pkgs, ...}: {
programs = {
neovim = {
enable = true;
defaultEditor = true;
};
};
home.sessionVariables.EDITOR = "nvim";
}