tangled
alpha
login
or
join now
sharparam.com
/
dotfiles
0
fork
atom
this repo has no description
dotfiles
0
fork
atom
overview
issues
pulls
pipelines
[zsh] Remove redundant path entry
sharparam.com
3 weeks ago
84fc7148
31e40a7b
verified
This commit was signed with the committer's
known signature
.
sharparam.com
SSH Key Fingerprint:
SHA256:ovycjIBhBAebccGBKsv/qU55pv3EyICepNWb1VhblYk=
+1
-1
1 changed file
expand all
collapse all
unified
split
zsh
.zshrc
+1
-1
zsh/.zshrc
···
1
1
typeset -aUx path
2
2
fpath=($HOME/.zsh $HOME/.zfunc $fpath)
3
3
-
path=($HOME/.local/bin "$HOME/.cargo/bin" $path)
3
3
+
path=($HOME/.local/bin $path)
4
4
5
5
take() { mkdir -p "$1" && cd "$1" }
6
6
gake() { take "$1" && git init }