fish: add examples for shellAliases, shellAbbrs
This commit is contained in:
parent
2eb1cb077d
commit
665766f8bb
|
@ -62,6 +62,7 @@ in
|
||||||
shellAliases = mkOption {
|
shellAliases = mkOption {
|
||||||
type = types.attrs;
|
type = types.attrs;
|
||||||
default = {};
|
default = {};
|
||||||
|
example = { ".." = "cd .."; ll = "ls -l"; };
|
||||||
description = ''
|
description = ''
|
||||||
Set of aliases for fish shell. See
|
Set of aliases for fish shell. See
|
||||||
<option>environment.shellAliases</option> for an option
|
<option>environment.shellAliases</option> for an option
|
||||||
|
@ -72,6 +73,7 @@ in
|
||||||
shellAbbrs = mkOption {
|
shellAbbrs = mkOption {
|
||||||
type = types.attrs;
|
type = types.attrs;
|
||||||
default = {};
|
default = {};
|
||||||
|
example = { l = "less"; gco = "git checkout"; };
|
||||||
description = ''
|
description = ''
|
||||||
Set of abbreviations for fish shell.
|
Set of abbreviations for fish shell.
|
||||||
'';
|
'';
|
||||||
|
|
Loading…
Reference in a new issue