1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-26 08:28:30 +02:00

fish: add examples for shellAliases, shellAbbrs

This commit is contained in:
Ryan Orendorff 2019-09-22 23:54:08 -07:00 committed by Robert Helgesson
parent 2eb1cb077d
commit 665766f8bb
No known key found for this signature in database
GPG Key ID: 36BDAA14C2797E89

View File

@ -62,6 +62,7 @@ in
shellAliases = mkOption {
type = types.attrs;
default = {};
example = { ".." = "cd .."; ll = "ls -l"; };
description = ''
Set of aliases for fish shell. See
<option>environment.shellAliases</option> for an option
@ -72,6 +73,7 @@ in
shellAbbrs = mkOption {
type = types.attrs;
default = {};
example = { l = "less"; gco = "git checkout"; };
description = ''
Set of abbreviations for fish shell.
'';