diff options
author | Óscar Nájera <hi@oscarnajera.com> | 2021-07-19 10:09:21 +0200 |
---|---|---|
committer | Óscar Nájera <hi@oscarnajera.com> | 2021-07-19 10:09:21 +0200 |
commit | 95324aa69bc02254ef04ca87e012958dd190f5c4 (patch) | |
tree | 64610244eec9032459e2e55d89cc1c1bd1b7c6fc | |
parent | 2665381cf6c43a28e8a930ab9215272bffa5f787 (diff) | |
download | dotfiles-95324aa69bc02254ef04ca87e012958dd190f5c4.tar.gz dotfiles-95324aa69bc02254ef04ca87e012958dd190f5c4.tar.bz2 dotfiles-95324aa69bc02254ef04ca87e012958dd190f5c4.zip |
$HOME in zshrc
-rw-r--r-- | home-dots/dot-zshrc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/home-dots/dot-zshrc b/home-dots/dot-zshrc index e521ca7..764fb25 100644 --- a/home-dots/dot-zshrc +++ b/home-dots/dot-zshrc @@ -120,8 +120,8 @@ alias gdimg='git difftool -t image_diff' alias -g G='| grep' alias lar='ls -lahrt' -alias mykeys='setxkbmap -I~/.config/xkb/ oscar -option caps:escape -print | xkbcomp -I$HOME/.config/xkb/ - $DISPLAY' +alias mykeys='setxkbmap -I$HOME/.config/xkb/ oscar -option caps:escape -print | xkbcomp -I$HOME/.config/xkb/ - $DISPLAY' export PATH="$HOME/.cargo/bin:$PATH" -if [ -e /home/titan/.nix-profile/etc/profile.d/nix.sh ]; then . /home/titan/.nix-profile/etc/profile.d/nix.sh; fi # added by Nix installer -[ -f "/home/titan/.ghcup/env" ] && source "/home/titan/.ghcup/env" # ghcup-env +if [ -e $HOME/.nix-profile/etc/profile.d/nix.sh ]; then . $HOME/.nix-profile/etc/profile.d/nix.sh; fi # added by Nix installer +[ -f "$HOME/.ghcup/env" ] && source "$HOME/.ghcup/env" # ghcup-env |