use neovim for man pager

This commit is contained in:
Noah Masur 2022-05-11 21:13:41 -04:00
parent 2c07d8e24a
commit 835cebebfb

View File

@ -42,7 +42,10 @@
};
programs.git.extraConfig.core.editor = "nvim";
home.sessionVariables = { EDITOR = "nvim"; };
home.sessionVariables = {
EDITOR = "nvim";
MANPAGER = "nvim +Man!";
};
programs.fish = {
shellAliases = { vim = "nvim"; };
shellAbbrs = { vll = "vim -c 'Telescope oldfiles'"; };