]> git.netwichtig.de Git - user/henk/vcsh/zsh.git/blob - .zprofile
fix: move exports to proper file .zprofile
[user/henk/vcsh/zsh.git] / .zprofile
1 # I want my own bins to take precedence
2 PATH="$HOME/bin:$HOME/usr/bin:$HOME/usr/local/bin:$HOME/.local/bin:$PATH"
3 # I want sbin executables available
4 PATH=${PATH}:/usr/local/sbin:/sbin:/usr/sbin
5 # remove duplicates because tmux starts login shells
6 typeset -U path
7 export PATH
8
9
10 export DEBEMAIL=deb@henk.geekmail.org
11 #export BROWSER=iceweasel
12 export EDITOR=vim
13
14
15 # language should generally be english
16 export LANG="en_US.UTF-8"
17 export LC_MESSAGES="en_US.UTF-8"
18
19 # everything else the local format
20 export LC_CTYPE="de_CH.UTF-8"
21 export LC_NUMERIC="de_CH.UTF-8"
22 export LC_TIME="de_CH.UTF-8"
23 export LC_COLLATE="de_CH.UTF-8"
24 export LC_MONETARY="de_CH.UTF-8"
25 export LC_PAPER="de_CH.UTF-8"
26 export LC_NAME="de_CH.UTF-8"
27 export LC_ADDRESS="de_CH.UTF-8"
28 export LC_TELEPHONE="de_CH.UTF-8"
29 export LC_MEASUREMENT="de_CH.UTF-8"
30 export LC_IDENTIFICATION="de_CH.UTF-8"
31
32
33 # do not use cowsay
34 export ANSIBLE_NOCOWS=1
35 # better strategy for multiple hosts
36 export ANSIBLE_STRATEGY=mitogen_linear
37
38
39 # read settings from user directory
40 export TEXMFCNF=${HOME}/.texlive:
41
42
43 export FZF_DEFAULT_COMMAND='fdfind --type f'
44
45
46 # colors for newt/whiptail (for debconf, needrestart, etc.)
47 # works better with selenized colorscheme
48 # everything that seems irrelevant is set to brown
49 NEWT_COLORS=''
50 # foreground seems irrelevant
51 NEWT_COLORS="${NEWT_COLORS};root=brown,blue"
52 # text in the root window
53 NEWT_COLORS="${NEWT_COLORS};roottext=yellow,blue"
54
55 # box/window/button shadows
56 NEWT_COLORS="${NEWT_COLORS};shadow=brown,black"
57
58 # boxes/windows themselves
59 NEWT_COLORS="${NEWT_COLORS};window=brown,lightgray"
60 # box/window titles
61 NEWT_COLORS="${NEWT_COLORS};title=yellow,lightgray"
62 # box/window borders
63 NEWT_COLORS="${NEWT_COLORS};border=gray,lightgray"
64
65 # full buttons
66 NEWT_COLORS="${NEWT_COLORS};button=black,red"
67 # compact buttons
68 NEWT_COLORS="${NEWT_COLORS};compactbutton=black,lightgray"
69 # selected/active button
70 NEWT_COLORS="${NEWT_COLORS};actbutton=green,gray"
71
72 # checkbox itself and text
73 NEWT_COLORS="${NEWT_COLORS};checkbox=black,blue"
74 # selection marker for checkbox
75 NEWT_COLORS="${NEWT_COLORS};actcheckbox=yellow,gray"
76
77 # TODO FIXME: no clue what that is
78 NEWT_COLORS="${NEWT_COLORS};entry=yellow,brown"
79 # TODO FIXME: no clue what that is
80 NEWT_COLORS="${NEWT_COLORS};disentry=brown,yellow"
81
82 # TODO FIXME: no clue what that is
83 NEWT_COLORS="${NEWT_COLORS};label=yellow,red"
84
85 # unselected entries in menus
86 NEWT_COLORS="${NEWT_COLORS};listbox=lightgray,gray"
87 # selected entries in menus
88 NEWT_COLORS="${NEWT_COLORS};actsellistbox=yellow,blue"
89 # TODO FIXME: no clue what that is
90 NEWT_COLORS="${NEWT_COLORS};actlistbox=brown,red"
91 # TODO FIXME: no clue what that is
92 NEWT_COLORS="${NEWT_COLORS};sellistbox=black,brown"
93
94 NEWT_COLORS="${NEWT_COLORS};textbox=black,lightgray"
95 NEWT_COLORS="${NEWT_COLORS};acttextbox=brown,green"
96
97 # TODO FIXME: no clue what that is
98 NEWT_COLORS="${NEWT_COLORS};helpline=yellow,brown"
99
100 # probably for gauges
101 NEWT_COLORS="${NEWT_COLORS};emptyscale=red"
102 NEWT_COLORS="${NEWT_COLORS};fullscale=blue"
103
104 export NEWT_COLORS
105
106 # black
107 # darkgray
108 # brown
109 # yellow
110 #
111 # blue
112 # cyan
113 # gray
114 # green
115 # magenta
116 # red
117 #
118 # lightblue
119 # lightcyan
120 # lightgray
121 # lightgreen
122 # lightmagenta
123 # lightred
124