22 lines
548 B
Fish
22 lines
548 B
Fish
if status is-interactive
|
|
# Commands to run in interactive sessions can go here
|
|
|
|
# ===== correctifs : déportés dans conf.d/fixes.fish
|
|
|
|
# ===== abbreviations
|
|
|
|
abbr -a cl -- clear
|
|
|
|
# python
|
|
abbr -a -- py 'python3'
|
|
abbr -a -- python 'python3'
|
|
# .venv dans le dossier courant
|
|
abbr -a -- pyv '.venv/bin/python'
|
|
|
|
# backoffice
|
|
abbr -a -- pybo '~/dev/repos/backoffice/.venv/bin/python'
|
|
# manage.py
|
|
abbr -a -- djbo '~/dev/repos/backoffice/.venv/bin/python ~/dev/repos/backoffice/manage.py'
|
|
|
|
end
|