refactor(zsh): move configuration files
This commit is contained in:
parent
b7518872ff
commit
b58302c1ee
21 changed files with 17 additions and 7 deletions
12
roles/zsh/files/config/configs/aliases.zsh
Normal file
12
roles/zsh/files/config/configs/aliases.zsh
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
alias hosts='sudo vim /etc/hosts'
|
||||
alias rebase='git fetch --all --prune --prune-tags && git rebase'
|
||||
alias run='./run'
|
||||
alias sshconfig='vim ~/.ssh/config'
|
||||
alias vim='nvim'
|
||||
|
||||
# Allow for pasting lines of code that start with a dollar sign.
|
||||
alias \$=''
|
||||
|
||||
# Re-implement pbcopy and pbpaste from macOS.
|
||||
alias pbcopy="xclip -selection clipboard"
|
||||
alias pbpaste="xclip -selection clipboard -o"
|
||||
Loading…
Add table
Add a link
Reference in a new issue