Skip to content

Commit 60f864b

Browse files
committed
fix(*sh): typo on bashrc and improve zshrc paths
1 parent 927e87f commit 60f864b

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

bash/.bashrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@
1010
# here, since multilingual X sessions would not work properly if LANG is over-
1111
# ridden in every subshell.
1212

13-
test -s ~/.alias && . ~/.alias || true
13+
test -s ~/.aliases && . ~/.aliases || true

zsh/.zshrc

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,11 @@ export VISUAL='nvim'
1818
[[ ! -f ~/.p10k.zsh ]] || source ~/.p10k.zsh
1919
[[ ! -f ~/.aliases ]] || source ~/.aliases
2020

21-
PATH="/home/wabri/perl5/bin${PATH:+:${PATH}}"; export PATH;
22-
PERL5LIB="/home/wabri/perl5/lib/perl5${PERL5LIB:+:${PERL5LIB}}"; export PERL5LIB;
23-
PERL_LOCAL_LIB_ROOT="/home/wabri/perl5${PERL_LOCAL_LIB_ROOT:+:${PERL_LOCAL_LIB_ROOT}}"; export PERL_LOCAL_LIB_ROOT;
24-
PERL_MB_OPT="--install_base \"/home/wabri/perl5\""; export PERL_MB_OPT;
25-
PERL_MM_OPT="INSTALL_BASE=/home/wabri/perl5"; export PERL_MM_OPT;
21+
PATH="$HOME/perl5/bin${PATH:+:${PATH}}"; export PATH;
22+
PERL5LIB="$HOME/perl5/lib/perl5${PERL5LIB:+:${PERL5LIB}}"; export PERL5LIB;
23+
PERL_LOCAL_LIB_ROOT="$HOME/perl5${PERL_LOCAL_LIB_ROOT:+:${PERL_LOCAL_LIB_ROOT}}"; export PERL_LOCAL_LIB_ROOT;
24+
PERL_MB_OPT="--install_base \"$HOME/perl5\""; export PERL_MB_OPT;
25+
PERL_MM_OPT="INSTALL_BASE=$HOME/perl5"; export PERL_MM_OPT;
2626
ZSH_COMPDUMP="$XDG_CACHE_HOME/zsh/.zcompdump"
2727

2828
# ASDF variables
@@ -31,4 +31,4 @@ export PATH="${ASDF_DATA_DIR:-$HOME/.asdf}/shims:$PATH"
3131
fpath=(${ASDF_DATA_DIR:-$HOME/.asdf}/completions $fpath)
3232
autoload -Uz compinit && compinit -d "$ZSH_COMPDUMP"
3333

34-
export PATH=$PATH:/home/wabri/.spicetify
34+
export PATH=$PATH:$HOME/.spicetify

0 commit comments

Comments
 (0)