diff options
Diffstat (limited to 'zsh/zprofile')
| -rw-r--r-- | zsh/zprofile | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/zsh/zprofile b/zsh/zprofile index 34d71c1..4e208f6 100644 --- a/zsh/zprofile +++ b/zsh/zprofile | |||
| @@ -1,3 +1,32 @@ | |||
| 1 | # vim: filetype=zsh | 1 | # vim: filetype=zsh |
| 2 | 2 | ||
| 3 | [[ -d "${HISTFILE:h}" ]] || mkdir -p "${HISTFILE:h}" | 3 | [[ -d "${HISTFILE:h}" ]] || mkdir -p "${HISTFILE:h}" |
| 4 | |||
| 5 | path=( | ||
| 6 | $HOME/.cargo/bin | ||
| 7 | $HOME/.local/bin | ||
| 8 | $HOME/.local/texlive/bin/amd64-freebsd | ||
| 9 | $path | ||
| 10 | ) | ||
| 11 | |||
| 12 | export MANPATH="${MANPATH:-$(manpath)}:$NPM_PACKAGES/share/man:$HOME/.local/texlive/texmf-dist/man" | ||
| 13 | export INFOPATH="$INFOPATH:$HOME/.local/texlive/texmf-dist/info" | ||
| 14 | |||
| 15 | # Fix für include/lib Verzeichnisse | ||
| 16 | # Details: https://gcc.gnu.org/onlinedocs/cpp/Environment-Variables.html | ||
| 17 | export C_INCLUDE_PATH="/usr/local/include:$C_INCLUDE_PATH" | ||
| 18 | export CPLUS_INCLUDE_PATH="/usr/local/include:$CPLUS_INCLUDE_PATH" | ||
| 19 | export LIBRARY_PATH="/usr/local/lib:$LIBRARY_PATH" | ||
| 20 | |||
| 21 | # Fix Midnight Commander ESC Taste | ||
| 22 | # zusätzlich noch unter "F9 -> Optionen -> Konfiguration -> Escape Tastenmodus -> [x] Einzelner Tastendruck" aktivieren | ||
| 23 | export KEYBOARD_KEY_TIMEOUT_US=1000 | ||
| 24 | |||
| 25 | # Tmuxp | ||
| 26 | export TMUXP_CONFIGDIR="$XDG_CONFIG_HOME/tmuxp" | ||
| 27 | |||
| 28 | # Vit (Taskwarrior UI) | ||
| 29 | export VIT_DIR="$XDG_CONFIG_HOME/vit" | ||
| 30 | |||
| 31 | # music player daemon | ||
| 32 | export MPD_HOST=localhost | ||
