Revert "fish: use global for abbr"
This reverts commit 7d6a6cbbe3
.
The version of fish in Nixpkgs 18.09 is not compatible with this
option. See #581.
This commit is contained in:
parent
cf5b16b45f
commit
1ade5cad80
|
@ -7,7 +7,7 @@ let
|
|||
cfg = config.programs.fish;
|
||||
|
||||
abbrsStr = concatStringsSep "\n" (
|
||||
mapAttrsToList (k: v: "abbr --add --global ${k} '${v}'") cfg.shellAbbrs
|
||||
mapAttrsToList (k: v: "abbr --add ${k} '${v}'") cfg.shellAbbrs
|
||||
);
|
||||
|
||||
aliasesStr = concatStringsSep "\n" (
|
||||
|
|
Loading…
Reference in a new issue