blob: 8cb0d149620ada43f3dc35ee8299b547e78775ce (
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
|
export PATH="$PATH:$(find ~/.local/bin -type d | paste -sd ':' -)"
export ZDOTDIR="$HOME/.config/zsh"
export BROWSER="firefox"
export EDITOR="nvim"
export MANPAGER='nvim +Man!'
export TERMINAL="foot"
export TERMINAL_PROG="foot"
export XDG_CONFIG_HOME="$HOME/.config"
export XDG_DATA_HOME="$HOME/.local/share"
export XDG_CACHE_HOME="$HOME/.cache"
export XDG_STATE_HOME="$HOME/.local/state"
export XDG_DOWNLOAD_DIR="$HOME/downloads"
export GIT_CONFIG="$XDG_CONFIG_HOME/git/config"
export PASSWORD_STORE_DIR="$XDG_DATA_HOME"/pass
export NPM_CONFIG_USERCONFIG=$XDG_CONFIG_HOME/npm/npmrc
export CARGO_HOME="$XDG_DATA_HOME"/cargo
export NOTMUCH_CONFIG="$XDG_CONFIG_HOME/notmuch-config"
export MBSYNCRC="$XDG_CONFIG_HOME/mbsync/config"
export GTK2_RC_FILES="$XDG_CONFIG_HOME/gtk-2.0/gtkrc"
export GOPATH="$XDG_DATA_HOME/go"
export GOMODCACHE="$XDG_CACHE_HOME/go/mod"
export BEMENU_OPTS='--fb "#2e3440" --ff "#d8dee9" --nb "#2e3440" --nf "#d8dee9" --tb "#2e3440" --hb "#2e3440" --tf "#bf616a" --hf "#ebcb8b" --af "d8dee9" --ab "#2e3440" --fn "monospace 14"'
export QT_QPA_PLATFORMTHEME=gtk2
export ELECTRON_OZONE_PLATFORM_HINT=auto
[ "$(tty)" = "/dev/tty1" ] && ! pidof -s sway >/dev/null 2>&1 && exec dbus-run-session sway --unsupported-gpu
|