aliases for tmux and docker python

This commit is contained in:
Noah Masur 2020-11-23 18:14:48 -05:00
parent 9ea394dedd
commit 6f29f2ada2

View File

@ -9,6 +9,10 @@ function aliases --description 'All aliases'
abbr -a ll 'ls -alhF' # Include hidden files
abbr -a c 'cd'
# Tmux
abbr -a ta 'tmux attach-session'
abbr -a tan 'tmux attach-session -t noah'
# Git
abbr -a gs 'git status'
abbr -a gd 'git diff'
@ -84,6 +88,7 @@ function aliases --description 'All aliases'
# Python
abbr -a py 'python'
abbr -a dpy 'docker run --rm -it -v $PWD:/project python:alpine python'
abbr -a po 'poetry'
abbr -a pr 'poetry run python'
abbr -a pl 'poetry run pylint *'