This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Zellij - Launch zellij if not launched yet and not in vscode integrated shell | |
if not set -q VSCODE_SHELL_INTEGRATION | |
if set -q ZELLIJ | |
else | |
zellij | |
end | |
end | |
# Python - Activate python virtual env | |
function __auto_source_venv --on-variable PWD --description "Activate/Deactivate virtualenv on directory change" |
OlderNewer