blob: 3be3315663dbdbfc6574fc5ebb690ad2552ff5e5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
# vim: filetype=zsh
[[ -d "${HISTFILE:h}" ]] || mkdir -p "${HISTFILE:h}"
path=(
$HOME/.cargo/bin
$HOME/.local/bin
$HOME/.local/texlive/bin/amd64-freebsd
$path
)
export MANPATH="${MANPATH:-$(manpath)}:$NPM_PACKAGES/share/man:$HOME/.local/texlive/texmf-dist/man"
export INFOPATH="$INFOPATH:$HOME/.local/texlive/texmf-dist/info"
# Fix für include/lib Verzeichnisse
# Details: https://gcc.gnu.org/onlinedocs/cpp/Environment-Variables.html
export C_INCLUDE_PATH="/usr/local/include:$C_INCLUDE_PATH"
export CPLUS_INCLUDE_PATH="/usr/local/include:$CPLUS_INCLUDE_PATH"
export LIBRARY_PATH="/usr/local/lib:$LIBRARY_PATH"
# Fix Midnight Commander ESC Taste
# zusätzlich noch unter "F9 -> Optionen -> Konfiguration -> Escape Tastenmodus -> [x] Einzelner Tastendruck" aktivieren
export KEYBOARD_KEY_TIMEOUT_US=1000
# Tmuxp
# https://tmuxp.git-pull.com/configuration/environmental-variables.html
export TMUXP_CONFIGDIR="$XDG_CONFIG_HOME/tmuxp"
# Vit (Taskwarrior UI)
# https://github.com/vit-project/vit/blob/2.x/CUSTOMIZE.md
export VIT_DIR="$XDG_CONFIG_HOME/vit"
# music player daemon
# https://mpd.readthedocs.io/en/latest/client.html#environment-variables
export MPD_HOST=localhost
|