nix/users/gandalf/modules/neovim/default.nix

14 lines
187 B
Nix

{ ... }: {
xdg.configFile."nvim" = {
source = ./config;
recursive = true;
};
programs.neovim = {
enable = true;
defaultEditor = true;
vimAlias = true;
};
}