mirror of
https://github.com/nix-community/home-manager
synced 2024-11-10 21:29:48 +01:00
zsh: fix broken ZDOTDIR when path contains spaces
This commit is contained in:
parent
c8e39cdb04
commit
9aea11023d
1 changed files with 1 additions and 1 deletions
|
@ -22,7 +22,7 @@ let
|
||||||
mapAttrsToList (k: v: ''hash -d ${k}="${v}"'') cfg.dirHashes
|
mapAttrsToList (k: v: ''hash -d ${k}="${v}"'') cfg.dirHashes
|
||||||
);
|
);
|
||||||
|
|
||||||
zdotdir = "$HOME/" + cfg.dotDir;
|
zdotdir = "$HOME/" + lib.escapeShellArg cfg.dotDir;
|
||||||
|
|
||||||
bindkeyCommands = {
|
bindkeyCommands = {
|
||||||
emacs = "bindkey -e";
|
emacs = "bindkey -e";
|
||||||
|
|
Loading…
Reference in a new issue