diff options
| author | Thomas Schmucker <ts@its1.de> | 2026-01-02 23:26:18 +0100 |
|---|---|---|
| committer | Thomas Schmucker <ts@its1.de> | 2026-01-02 23:26:18 +0100 |
| commit | 032eb4872661cfd40cc8d867500f6cd2ac6a013b (patch) | |
| tree | 5a981c4327125cd282f8fc3e24bade335236fab2 /zsh/zprofile | |
| parent | a599969f7a9276776931875532c90af881f2a292 (diff) | |
| download | dotfiles-032eb4872661cfd40cc8d867500f6cd2ac6a013b.tar.gz dotfiles-032eb4872661cfd40cc8d867500f6cd2ac6a013b.tar.bz2 dotfiles-032eb4872661cfd40cc8d867500f6cd2ac6a013b.zip | |
weitere Verbesserungen
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 | ||
