1
0
Fork 0
dotfiles/files/.config/zsh/custom/100-alias.zsh

24 lines
613 B
Bash
Raw Normal View History

2018-03-10 04:04:29 +00:00
alias svim="sudo -e"
alias vissh="$EDITOR ~/.ssh/config"
alias vihosts="sudo -e /etc/hosts"
2018-04-11 19:52:53 +00:00
alias top="htop"
2018-03-10 04:04:29 +00:00
alias http-server="python -m http.server"
2018-03-14 13:33:11 +00:00
alias rename="perl-rename"
2018-05-16 16:22:26 +00:00
alias userctl="systemctl --user"
2018-03-10 04:04:29 +00:00
2018-04-16 20:21:39 +00:00
# powershell seems to have trouble with xterm-256colors
alias pwsh="TERM=xterm pwsh"
alias powershell="TERM=xterm pwsh"
2018-03-10 04:04:29 +00:00
# network stuff must always be run with sudo anyway
alias wifi-menu="sudo wifi-menu -o"
alias netctl="sudo netctl"
# serial
2018-03-23 12:53:39 +00:00
alias minicom="docker run --device=/dev/ttyUSB0 -it registry.massaki.ca/minicom"
2018-03-10 04:04:29 +00:00
2018-04-16 20:21:39 +00:00
# open-sourced build of vscode is named code-oss
2018-03-10 04:04:29 +00:00
alias code="code-oss"
2018-04-16 20:21:39 +00:00