Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feature/zsh #38

Merged
merged 14 commits into from
Feb 13, 2024
Prev Previous commit
Next Next commit
Update aliases in zsh configuration
  • Loading branch information
edheltzel committed Feb 13, 2024
commit 512becbf50b0c248f7f83a4c5de6b552e0f80c49
4 changes: 2 additions & 2 deletions zsh/.config/zsh/aliases.zsh
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
#!/bin/sh
# Workflow aliases
alias reload='exec $SHELL'
alias sourcezsh='source ~/.zshrc'
alias local='cd ~/.local && l'
alias config='cd ~/.config && l'
alias usebash='chsh -s $(which bash)'
Expand All @@ -12,7 +11,7 @@ alias grep='grep --color=auto'
alias egrep='egrep --color=auto'
alias fgrep='fgrep --color=auto'

# Confirm before overwriting something
# Confirm before overwriting
alias cp="cp -i"
alias mv='mv -i'
alias rm='rm -i'
Expand Down Expand Up @@ -42,6 +41,7 @@ alias sdel='sudo rm -rf $*'

# Editors/Utitlities
alias code='code-insiders'
alias vim='nvim'
alias top='btm'
alias bottom='btm'
alias serve='miniserve'
Expand Down