mirror of
https://github.com/nix-community/home-manager.git
synced 2026-01-12 01:59:37 +08:00
zsh: fix broken ZDOTDIR when path contains spaces
This commit is contained in:
committed by
Robert Helgesson
parent
0b69d57416
commit
0e0e966954
@@ -22,7 +22,7 @@ let
|
||||
mapAttrsToList (k: v: ''hash -d ${k}="${v}"'') cfg.dirHashes
|
||||
);
|
||||
|
||||
zdotdir = "$HOME/" + cfg.dotDir;
|
||||
zdotdir = "$HOME/" + lib.escapeShellArg cfg.dotDir;
|
||||
|
||||
bindkeyCommands = {
|
||||
emacs = "bindkey -e";
|
||||
|
||||
Reference in New Issue
Block a user