Short scripts to make your life easier.
Most of the scripts are dependant on
Dependency | Description |
---|---|
zsh | Shell |
git | Version Control |
fzf | Fuzzy Finder |
fd | Fast Find |
bat | Cat with Wings |
awk | Text Processing |
sed | Text Processing |
-
Clone the repository to your home directory as
bin
-
Add the following to your
.zshrc
:
# add user scripts to PATH
path+=($HOME/bin/)
# Exclude .git from PATH
new_path=()
for p in $path; do
if [[ "$p" != "$HOME/bin/.git" && "$p" != *".md" ]]; then
new_path+=($p)
fi
done
path=($new_path)
export PATH