diff options
Diffstat (limited to 'hm/soispha/conf/less/default.nix')
-rw-r--r-- | hm/soispha/conf/less/default.nix | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/hm/soispha/conf/less/default.nix b/hm/soispha/conf/less/default.nix deleted file mode 100644 index f4103080..00000000 --- a/hm/soispha/conf/less/default.nix +++ /dev/null @@ -1,17 +0,0 @@ -{config, ...}: { - home.sessionVariables = { - PAGER = "less"; - MANPAGER = "less --color=d+r --color=u+b"; - - # These are added here because adding them in the lesskey file somehow doesn't work. - LESSHISTSIZE = 10000; - LESSHISTFILE = "${config.xdg.dataHome}/less/history"; - }; - programs.less = { - enable = true; - keys = - builtins.readFile ./command.less - + builtins.readFile ./line-edit.less - + builtins.readFile ./env.less; - }; -} |