blob: 196121b85506aa1a0a5c6eb64dc388aa4e0fe4ec (
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
36
37
38
|
# XDG directories
export XDG_CONFIG_HOME=$HOME/.config
export XDG_CACHE_HOME=$HOME/.cache
export XDG_DATA_HOME=$HOME/.local/share
export XDG_STATE_HOME=$HOME/.local/state
eval $(keychain --eval --quiet id_ed25519)
PATH="$HOME/.local/bin:$PATH"
if [ -d $HOME/.local/nvim ]; then
PATH="$HOME/.local/nvim/bin:$PATH"
fi
# TexLive paths
if [ -d $HOME/.local/texlive ]; then
PATH="$HOME/.local/texlive/bin/x86_64-linux:$PATH"
INFOPATH="$HOME/.local/texlive/texmf-dist/doc/info:$INFOPATH"
INFODIR="$HOME/.local/texlive/texmf-dist/doc/info:$INFODIR"
MANPATH="$HOME/.local/texlive/texmf-dist/doc/man:$MANPATH"
fi
export PATH=$HOME/.local/bin:$PATH
if [ -d $HOME/.local/nvim ]; then
export EDITOR=$HOME/.local/nvim/bin/nvim
export VISUAL=$HOME/.local/nvim/bin/nvim
else
export EDITOR=nvim
export VISUAL=nvim
fi
export MANPAGER='nvim +Man!'
export PAGER="less"
export BROWSER=/usr/bin/firefox
export QT_QPA_PLATFORMTHEME=qt5ct
export QT_PLATFORM_PLUGIN=qt5ct
export QT_PLATFORMTHEME=qt5ct
export GPG_TTY=$(tty)
export LIBGL_DRI3_DISABLE=true
|