fish: use global for abbr
Makes fish use global scope for abbreviations.
This makes it so that they don't stick across config changes.
Before, an abbreviation would still exist even if removed from the config.
(cherry picked from commit 601619660d
)
This commit is contained in:
parent
016005a3a3
commit
7d6a6cbbe3
|
@ -7,7 +7,7 @@ let
|
||||||
cfg = config.programs.fish;
|
cfg = config.programs.fish;
|
||||||
|
|
||||||
abbrsStr = concatStringsSep "\n" (
|
abbrsStr = concatStringsSep "\n" (
|
||||||
mapAttrsToList (k: v: "abbr --add ${k} '${v}'") cfg.shellAbbrs
|
mapAttrsToList (k: v: "abbr --add --global ${k} '${v}'") cfg.shellAbbrs
|
||||||
);
|
);
|
||||||
|
|
||||||
aliasesStr = concatStringsSep "\n" (
|
aliasesStr = concatStringsSep "\n" (
|
||||||
|
|
Loading…
Reference in a new issue