Set neovim to be used instead of less for viewing manpages

This commit is contained in:
Curt Spark 2024-11-20 02:18:34 +00:00
parent 5e5882f80d
commit 61ff0d8cc9
1 changed files with 4 additions and 1 deletions

View File

@ -133,7 +133,7 @@
"3c3836" "3c3836"
]; ];
}; };
fonts.packages = with pkgs; [ fonts.packages = with pkgs; [
nerdfonts nerdfonts
]; ];
@ -171,6 +171,9 @@
# Dotnet path not found fix # Dotnet path not found fix
DOTNET_ROOT = "${pkgs.dotnet-sdk}"; DOTNET_ROOT = "${pkgs.dotnet-sdk}";
# Set neovim to be used instead of less for viewing manpages
MANPAGER = "nvim +Man!";
}; };
# NixOS Dynamic Libraries Fix # NixOS Dynamic Libraries Fix