blob: 94c40c72e59ac58fff55ed93aea1fb4c363b74ca (
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
|
# vim: ft=zsh
#environement variables
export PATH=~/.local/bin:$PATH
export PATH=~/.cabal/bin:$PATH
export PATH=~/.cargo/bin:$PATH
export PATH=~/.gem/ruby/2.7.0/bin:$PATH
# Set editor to nvim or vim or to nothing
if [ -x $(command -v nvim) ]; then
export EDITOR=nvim
elif [ -x $(command -v vim) ]; then
export EDITOR=vim
else
export EDITOR=
fi
# gnupg
export GNUPGHOME=$XDG_CONFIG_HOME/gnupg
# ICEauthority
export ICEAUTHORITY=$XDG_CACHE_HOME/ICEauthority
# less
export LESSHISTFILE=$XDG_CONFIG_HOME/less/history
export LESSKEY=$XDG_CONFIG_HOME/less/keys
# mplayer
export MPLAYER_HOME=$XDG_CONFIG_HOME/mplayer
# unison
export UNISON=$XDG_CONFIG_HOME/unison
# papers
export PAPERS_BANK=/home/lys/Documents/Work/these/these-pi/papers
# info
export INFOPATH=/usr/share/info:$INFOPATH
|