From 008475598a16b8cd423a6455e6bd4e81e1c68396 Mon Sep 17 00:00:00 2001 From: Ranomier <> Date: Mon, 3 Feb 2025 18:32:14 +0100 Subject: [PATCH] comments --- modules/customisation.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/modules/customisation.nix b/modules/customisation.nix index 824f102..65e1092 100644 --- a/modules/customisation.nix +++ b/modules/customisation.nix @@ -1,7 +1,10 @@ {pkgs, ...}: { + # install and set neovim as MANPAGER environment.systemPackages = [pkgs.neovim]; environment.variables = { "MANPAGER" = "nvim +Man!"; + + # set neovim as default editor "EDITOR" = "nvim"; }; }