diff options
author | Thomas Voss <mail@thomasvoss.com> | 2023-11-07 14:07:03 +0100 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2023-11-07 14:07:03 +0100 |
commit | 643421eaa37d931d487859aa8da47bc6b1a515ee (patch) | |
tree | 1c0b8e24a854423206411a275e5f6b998b313fbb /.config/environment.d | |
parent | 7b2bc071e67bd001ba989721134337cf60cafc57 (diff) |
systemd: Add environment config
Diffstat (limited to '.config/environment.d')
-rw-r--r-- | .config/environment.d/env.conf | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/.config/environment.d/env.conf b/.config/environment.d/env.conf new file mode 100644 index 0000000..ea7528a --- /dev/null +++ b/.config/environment.d/env.conf @@ -0,0 +1,26 @@ +BROWSER=firefox +CC=cc +EDITOR=nvim +VISUAL=nvim +TERM=xterm-256color + +XDG_CACHE_HOME=/home/thomas/.cache +XDG_CONFIG_DIRS=/etc/xdg +XDG_CONFIG_HOME=/home/thomas/.config +XDG_DATA_DIRS=/usr/local/share:/usr/share +XDG_DATA_HOME=/home/thomas/.local/share +XDG_STATE_HOME=/home/thomas/.local/state + +XDG_DESKTOP_DIR=/home/thomas +XDG_DOCUMENTS_DIR=/home/thomas/doc +XDG_DOWNLOAD_DIR=/home/thomas/down +XDG_MUSIC_DIR=/home/thomas/media/mus +XDG_PICTURES_DIR=/home/thomas/media/gfx +XDG_PUBLICSHARE_DIR=/home/thomas +XDG_TEMPLATES_DIR=/home/thomas +XDG_VIDEOS_DIR=/home/thomas/media/vid + +GOPATH=$XDG_DATA_HOME/go +GOROOT=/usr/lib/go + +PATH=/home/thomas/.local/bin:/home/thomas/.local/sbin:$GOROOT/bin:$GOPATH/bin:$PATH |