blob: 408f3c25034d65523c912ecc1b5e0486b7642310 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
typeset -U PATH path
path=("$HOME/.local/bin" "$path[@]")
export PATH
# fnm
export PATH=/home/gogo/.fnm:$PATH
eval "`fnm env`"
export EDITOR=/usr/bin/nvim
export PAGER="/usr/bin/nvim -u NORC +Man!"
export MANPAGER="/usr/bin/nvim -u NORC +Man!"
export VISUAL=/usr/bin/nvim
export BROWSER=/usr/bin/firefox
export QT_QPA_PLATFORMTHEME=qt5ct
export QT_PLATFORM_PLUGIN=qt5ct
export QT_PLATFORMTHEME=qt5ct
export GPG_TTY=$(tty)
|