dotfiles/roles/zsh/files/config/configs/aliases.zsh

13 lines
384 B
Bash
Raw Normal View History

2022-04-27 12:41:37 +00:00
alias hosts='sudo vim /etc/hosts'
alias rebase='git fetch --all --prune --prune-tags && git rebase'
alias run='./run'
2019-04-01 09:13:12 +00:00
alias sshconfig='vim ~/.ssh/config'
2022-04-27 12:41:37 +00:00
alias vim='nvim'
2020-01-14 14:57:48 +00:00
2020-01-15 02:26:59 +00:00
# Allow for pasting lines of code that start with a dollar sign.
alias \$=''
2020-11-11 11:37:38 +00:00
# Re-implement pbcopy and pbpaste from macOS.
alias pbcopy="xclip -selection clipboard"
alias pbpaste="xclip -selection clipboard -o"