.zshrc

Thu, 09 Feb 2017 00:50:08 -0500

author
Meredith Howard <mhoward@roomag.org>
date
Thu, 09 Feb 2017 00:50:08 -0500
changeset 501
542f7efa51d0
parent 469
fbf39fa1349c
child 511
f175eea7ad19
permissions
-rw-r--r--

push preferred fontconfig everywhere

272
f7fd81cbdb0c clean up noisier forms
Meredith Howard <mhoward@roomag.org>
parents: 265
diff changeset
1 typeset -U path omz_plugins zsh_plugins envthings
f7fd81cbdb0c clean up noisier forms
Meredith Howard <mhoward@roomag.org>
parents: 265
diff changeset
2
241
599f0e8cfb32 switch to zgen
Meredith Howard <mhoward@roomag.org>
parents: 223
diff changeset
3 # Version/environment management tools to load
265
d61dda282847 support rakudobrew
Meredith Howard <mhoward@roomag.org>
parents: 244
diff changeset
4 envthings=(plenv rbenv ndenv rakudobrew)
94
51ca19919894 Try to make setup easier, unify shell environments
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
5
242
8724c8ed6150 zgen fixes
Meredith Howard <mhoward@roomag.org>
parents: 241
diff changeset
6 DISABLE_AUTO_UPDATE="true"
241
599f0e8cfb32 switch to zgen
Meredith Howard <mhoward@roomag.org>
parents: 223
diff changeset
7 # DISABLE_AUTO_TITLE="true"
599f0e8cfb32 switch to zgen
Meredith Howard <mhoward@roomag.org>
parents: 223
diff changeset
8 COMPLETION_WAITING_DOTS="true"
599f0e8cfb32 switch to zgen
Meredith Howard <mhoward@roomag.org>
parents: 223
diff changeset
9 DISABLE_UNTRACKED_FILES_DIRTY="true"
138
c033679345bd Update prompt is annoying
Meredith Howard <mhoward@roomag.org>
parents: 101
diff changeset
10
243
9315299c4adc build plugin lists so local zshrc can mess with them before loading
Meredith Howard <mhoward@roomag.org>
parents: 242
diff changeset
11
9315299c4adc build plugin lists so local zshrc can mess with them before loading
Meredith Howard <mhoward@roomag.org>
parents: 242
diff changeset
12 omz_plugins=(
9315299c4adc build plugin lists so local zshrc can mess with them before loading
Meredith Howard <mhoward@roomag.org>
parents: 242
diff changeset
13 plugins/common-aliases
9315299c4adc build plugin lists so local zshrc can mess with them before loading
Meredith Howard <mhoward@roomag.org>
parents: 242
diff changeset
14 plugins/gitfast
9315299c4adc build plugin lists so local zshrc can mess with them before loading
Meredith Howard <mhoward@roomag.org>
parents: 242
diff changeset
15 plugins/colored-man-pages
9315299c4adc build plugin lists so local zshrc can mess with them before loading
Meredith Howard <mhoward@roomag.org>
parents: 242
diff changeset
16 )
9315299c4adc build plugin lists so local zshrc can mess with them before loading
Meredith Howard <mhoward@roomag.org>
parents: 242
diff changeset
17
9315299c4adc build plugin lists so local zshrc can mess with them before loading
Meredith Howard <mhoward@roomag.org>
parents: 242
diff changeset
18 zsh_plugins=(
9315299c4adc build plugin lists so local zshrc can mess with them before loading
Meredith Howard <mhoward@roomag.org>
parents: 242
diff changeset
19 zsh-users/zsh-syntax-highlighting
9315299c4adc build plugin lists so local zshrc can mess with them before loading
Meredith Howard <mhoward@roomag.org>
parents: 242
diff changeset
20 ~/.oh-my-zsh.cust/themes/mhoward
9315299c4adc build plugin lists so local zshrc can mess with them before loading
Meredith Howard <mhoward@roomag.org>
parents: 242
diff changeset
21 )
94
51ca19919894 Try to make setup easier, unify shell environments
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
22
95
6c1ea6e90a23 zsh startup fixes
Meredith Howard <mhoward@roomag.org>
parents: 94
diff changeset
23 if [ -f ~/.zshrc.local-pre ]; then
94
51ca19919894 Try to make setup easier, unify shell environments
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
24 source ~/.zshrc.local-pre
51ca19919894 Try to make setup easier, unify shell environments
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
25 fi
51ca19919894 Try to make setup easier, unify shell environments
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
26
241
599f0e8cfb32 switch to zgen
Meredith Howard <mhoward@roomag.org>
parents: 223
diff changeset
27 if [ -f ~/.zgen/zgen.zsh ]; then
599f0e8cfb32 switch to zgen
Meredith Howard <mhoward@roomag.org>
parents: 223
diff changeset
28 source ~/.zgen/zgen.zsh
94
51ca19919894 Try to make setup easier, unify shell environments
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
29
241
599f0e8cfb32 switch to zgen
Meredith Howard <mhoward@roomag.org>
parents: 223
diff changeset
30 if ! zgen saved; then
599f0e8cfb32 switch to zgen
Meredith Howard <mhoward@roomag.org>
parents: 223
diff changeset
31 zgen oh-my-zsh
272
f7fd81cbdb0c clean up noisier forms
Meredith Howard <mhoward@roomag.org>
parents: 265
diff changeset
32 for plugin in $omz_plugins; do zgen oh-my-zsh $plugin; done
94
51ca19919894 Try to make setup easier, unify shell environments
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
33
272
f7fd81cbdb0c clean up noisier forms
Meredith Howard <mhoward@roomag.org>
parents: 265
diff changeset
34 for plugin in $zsh_plugins; do zgen load $plugin; done
241
599f0e8cfb32 switch to zgen
Meredith Howard <mhoward@roomag.org>
parents: 223
diff changeset
35 zgen save
599f0e8cfb32 switch to zgen
Meredith Howard <mhoward@roomag.org>
parents: 223
diff changeset
36 fi
599f0e8cfb32 switch to zgen
Meredith Howard <mhoward@roomag.org>
parents: 223
diff changeset
37 fi
94
51ca19919894 Try to make setup easier, unify shell environments
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
38
272
f7fd81cbdb0c clean up noisier forms
Meredith Howard <mhoward@roomag.org>
parents: 265
diff changeset
39
f7fd81cbdb0c clean up noisier forms
Meredith Howard <mhoward@roomag.org>
parents: 265
diff changeset
40 path[1,0]="$HOME/bin"
94
51ca19919894 Try to make setup easier, unify shell environments
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
41
244
721455edd12b Add some zsh options
Meredith Howard <mhoward@roomag.org>
parents: 243
diff changeset
42 REPORTTIME=5
721455edd12b Add some zsh options
Meredith Howard <mhoward@roomag.org>
parents: 243
diff changeset
43
721455edd12b Add some zsh options
Meredith Howard <mhoward@roomag.org>
parents: 243
diff changeset
44 setopt list_packed
721455edd12b Add some zsh options
Meredith Howard <mhoward@roomag.org>
parents: 243
diff changeset
45 setopt correct
721455edd12b Add some zsh options
Meredith Howard <mhoward@roomag.org>
parents: 243
diff changeset
46 setopt hist_reduce_blanks
721455edd12b Add some zsh options
Meredith Howard <mhoward@roomag.org>
parents: 243
diff changeset
47 setopt hist_save_no_dups
331
ac7f662c1db5 add interactive_comments
Meredith Howard <mhoward@roomag.org>
parents: 272
diff changeset
48 setopt interactive_comments
244
721455edd12b Add some zsh options
Meredith Howard <mhoward@roomag.org>
parents: 243
diff changeset
49
721455edd12b Add some zsh options
Meredith Howard <mhoward@roomag.org>
parents: 243
diff changeset
50 export HISTIGNORE="ls:cd:cd -:pwd:exit:date:* --help"
721455edd12b Add some zsh options
Meredith Howard <mhoward@roomag.org>
parents: 243
diff changeset
51
469
fbf39fa1349c add kill-whole-line
Meredith Howard <mhoward@roomag.org>
parents: 331
diff changeset
52 bindkey '\e\e' kill-whole-line
fbf39fa1349c add kill-whole-line
Meredith Howard <mhoward@roomag.org>
parents: 331
diff changeset
53
174
d94a247836c8 move some basics into a common profile
Meredith Howard <mhoward@roomag.org>
parents: 169
diff changeset
54 source ~/.profile.common
94
51ca19919894 Try to make setup easier, unify shell environments
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
55
272
f7fd81cbdb0c clean up noisier forms
Meredith Howard <mhoward@roomag.org>
parents: 265
diff changeset
56 for envthing in $envthings; do
f7fd81cbdb0c clean up noisier forms
Meredith Howard <mhoward@roomag.org>
parents: 265
diff changeset
57 if [ -d ~/.$envthing ]; then
f7fd81cbdb0c clean up noisier forms
Meredith Howard <mhoward@roomag.org>
parents: 265
diff changeset
58 path[1,0]="$HOME/.$envthing/bin"
f7fd81cbdb0c clean up noisier forms
Meredith Howard <mhoward@roomag.org>
parents: 265
diff changeset
59 eval "$($envthing init - zsh)"
195
390c49ee432d DRY up my *env plugins
Meredith Howard <mhoward@roomag.org>
parents: 174
diff changeset
60 fi
390c49ee432d DRY up my *env plugins
Meredith Howard <mhoward@roomag.org>
parents: 174
diff changeset
61 done
94
51ca19919894 Try to make setup easier, unify shell environments
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
62
51ca19919894 Try to make setup easier, unify shell environments
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
63 if [ -f ~/.zshrc.local ]; then
51ca19919894 Try to make setup easier, unify shell environments
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
64 source ~/.zshrc.local
51ca19919894 Try to make setup easier, unify shell environments
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
65 fi
272
f7fd81cbdb0c clean up noisier forms
Meredith Howard <mhoward@roomag.org>
parents: 265
diff changeset
66

mercurial