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

16 lines
197 B
Nix

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