dotfiles/home/apps/neovim.nix

14 lines
220 B
Nix

{
home = {
sessionVariables = {
EDITOR = "nvim";
SUDO_EDITOR = "nvim";
VISUAL = "nvim";
};
shellAliases = {
vi = "nvim";
vim = "nvim";
vimdiff = "nvim -d";
};
};
}