dotfiles/home/apps/neovim.nix

15 lines
220 B
Nix
Raw Normal View History

{
2023-09-20 18:45:58 +02:00
home = {
sessionVariables = {
EDITOR = "nvim";
SUDO_EDITOR = "nvim";
VISUAL = "nvim";
};
shellAliases = {
vi = "nvim";
vim = "nvim";
vimdiff = "nvim -d";
};
};
}