aboutsummaryrefslogtreecommitdiff
path: root/zsh/zprofile
diff options
context:
space:
mode:
Diffstat (limited to 'zsh/zprofile')
-rw-r--r--zsh/zprofile29
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
5path=(
6 $HOME/.cargo/bin
7 $HOME/.local/bin
8 $HOME/.local/texlive/bin/amd64-freebsd
9 $path
10)
11
12export MANPATH="${MANPATH:-$(manpath)}:$NPM_PACKAGES/share/man:$HOME/.local/texlive/texmf-dist/man"
13export 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
17export C_INCLUDE_PATH="/usr/local/include:$C_INCLUDE_PATH"
18export CPLUS_INCLUDE_PATH="/usr/local/include:$CPLUS_INCLUDE_PATH"
19export 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
23export KEYBOARD_KEY_TIMEOUT_US=1000
24
25# Tmuxp
26export TMUXP_CONFIGDIR="$XDG_CONFIG_HOME/tmuxp"
27
28# Vit (Taskwarrior UI)
29export VIT_DIR="$XDG_CONFIG_HOME/vit"
30
31# music player daemon
32export MPD_HOST=localhost