diff options
author | Thanos Apollo <[email protected]> | 2024-05-13 08:42:44 +0300 |
---|---|---|
committer | Thanos Apollo <[email protected]> | 2024-05-13 08:42:44 +0300 |
commit | 2e74d58a4f675b5301e69cae105503198d7ff846 (patch) | |
tree | e92cca5c6406898e9ac1eae08653d894c24e3acf /.shells/exports.sh | |
parent | b6d164b032b255767b04a73e8ac0e04b61991048 (diff) | |
parent | 5d6840de02f01c017cc1ce99238d6962331087da (diff) |
Merge branch 'guix-config'
Diffstat (limited to '.shells/exports.sh')
-rw-r--r-- | .shells/exports.sh | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/.shells/exports.sh b/.shells/exports.sh deleted file mode 100644 index aaf0f7d..0000000 --- a/.shells/exports.sh +++ /dev/null @@ -1,27 +0,0 @@ -# Export 'SHELL' to child processes. Programs such as 'screen' -# honor it and otherwise use /bin/sh. -export SHELL -export PATH -export PATH=/home/$USER/.local/bin:$PATH -export EDITOR="emacsclient" -export GIT_EDITOR="emacsclient" -export SBCL_HOME="/usr/lib/sbcl/" -export PATH=$PATH:~/.roswell/bin -export SBCL_HOME=/usr/local/lib/sbcl -export XDG_SESSION_TYPE=x11 -export OLLAMA_HOST=zeus:11434 - -## Python -export PYENV_ROOT="$HOME/.pyenv" -export PATH="$PYENV_ROOT/bin:$PATH" - -if [[ $- != *i* ]] -then - # We are being invoked from a non-interactive shell. If this - # is an SSH session (as in "ssh host command"), source - # /etc/profile so we get PATH and other essential variables. - [[ -n "$SSH_CLIENT" ]] && source /etc/profile - - # Don't do anything else. - return -fi |