28 lines
742 B
Fish
28 lines
742 B
Fish
if status is-interactive
|
|
# Commands to run in interactive sessions can go here
|
|
end
|
|
|
|
set fish_greeting ""
|
|
|
|
set Profile_PATH ~/My/profiles
|
|
if test -e $Profile_PATH/shell/aliases.sh
|
|
. $Profile_PATH/shell/aliases.sh
|
|
end
|
|
|
|
# Python venv
|
|
# ----------------------------
|
|
alias newvenv="python -m venv .venv"
|
|
alias actvenv=". .venv/bin/activate.fish"
|
|
|
|
# Proxy
|
|
# ----------------------------
|
|
alias setproxy="export http_proxy=http://127.0.0.1:7890 https_proxy=http://127.0.0.1:7890 all_proxy=socks5://127.0.0.1:7890"
|
|
alias unsetproxy="set -e http_proxy https_proxy all_proxy"
|
|
|
|
# PATH
|
|
# ----------------------------
|
|
set PATH $PATH ~/My/apps/
|
|
set PATH $PATH ~/node_modules/.bin/
|
|
set PATH $PATH ~/.local/share/JetBrains/Toolbox/scripts
|
|
|
|
export PATH |