Thu, 28 Sep 2017 12:24:33 -0400
quick fix for latest neomutt
616
6c094ff1cb87
move ~/bin into zshenv
Meredith Howard <mhoward@roomag.org>
parents:
615
diff
changeset
|
1 | typeset -U omz_plugins zsh_plugins envthings |
272
f7fd81cbdb0c
clean up noisier forms
Meredith Howard <mhoward@roomag.org>
parents:
265
diff
changeset
|
2 | |
241 | 3 | # Version/environment management tools to load |
515
199b08808ed5
using asdf instead of rb/ndenv now
Meredith Howard <mhoward@roomag.org>
parents:
511
diff
changeset
|
4 | envthings=(plenv rakudobrew) |
94
51ca19919894
Try to make setup easier, unify shell environments
Meredith Howard <mhoward@roomag.org>
parents:
diff
changeset
|
5 | |
242 | 6 | DISABLE_AUTO_UPDATE="true" |
241 | 7 | # DISABLE_AUTO_TITLE="true" |
8 | COMPLETION_WAITING_DOTS="true" | |
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 | omz_plugins=( |
9315299c4adc
build plugin lists so local zshrc can mess with them before loading
Meredith Howard <mhoward@roomag.org>
parents:
242
diff
changeset
|
12 | 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
|
13 | 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
|
14 | ) |
9315299c4adc
build plugin lists so local zshrc can mess with them before loading
Meredith Howard <mhoward@roomag.org>
parents:
242
diff
changeset
|
15 | |
9315299c4adc
build plugin lists so local zshrc can mess with them before loading
Meredith Howard <mhoward@roomag.org>
parents:
242
diff
changeset
|
16 | zsh_plugins=( |
9315299c4adc
build plugin lists so local zshrc can mess with them before loading
Meredith Howard <mhoward@roomag.org>
parents:
242
diff
changeset
|
17 | 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
|
18 | ~/.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
|
19 | ) |
94
51ca19919894
Try to make setup easier, unify shell environments
Meredith Howard <mhoward@roomag.org>
parents:
diff
changeset
|
20 | |
95 | 21 | if [ -f ~/.zshrc.local-pre ]; then |
94
51ca19919894
Try to make setup easier, unify shell environments
Meredith Howard <mhoward@roomag.org>
parents:
diff
changeset
|
22 | source ~/.zshrc.local-pre |
51ca19919894
Try to make setup easier, unify shell environments
Meredith Howard <mhoward@roomag.org>
parents:
diff
changeset
|
23 | fi |
51ca19919894
Try to make setup easier, unify shell environments
Meredith Howard <mhoward@roomag.org>
parents:
diff
changeset
|
24 | |
241 | 25 | if [ -f ~/.zgen/zgen.zsh ]; then |
26 | source ~/.zgen/zgen.zsh | |
94
51ca19919894
Try to make setup easier, unify shell environments
Meredith Howard <mhoward@roomag.org>
parents:
diff
changeset
|
27 | |
241 | 28 | if ! zgen saved; then |
29 | zgen oh-my-zsh | |
272
f7fd81cbdb0c
clean up noisier forms
Meredith Howard <mhoward@roomag.org>
parents:
265
diff
changeset
|
30 | 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
|
31 | |
272
f7fd81cbdb0c
clean up noisier forms
Meredith Howard <mhoward@roomag.org>
parents:
265
diff
changeset
|
32 | for plugin in $zsh_plugins; do zgen load $plugin; done |
241 | 33 | zgen save |
34 | fi | |
35 | fi | |
94
51ca19919894
Try to make setup easier, unify shell environments
Meredith Howard <mhoward@roomag.org>
parents:
diff
changeset
|
36 | |
244 | 37 | REPORTTIME=5 |
38 | ||
39 | setopt list_packed | |
40 | setopt correct | |
41 | setopt hist_reduce_blanks | |
42 | setopt hist_save_no_dups | |
331
ac7f662c1db5
add interactive_comments
Meredith Howard <mhoward@roomag.org>
parents:
272
diff
changeset
|
43 | setopt interactive_comments |
244 | 44 | |
45 | export HISTIGNORE="ls:cd:cd -:pwd:exit:date:* --help" | |
46 | ||
469 | 47 | bindkey '\e\e' kill-whole-line |
48 | ||
174
d94a247836c8
move some basics into a common profile
Meredith Howard <mhoward@roomag.org>
parents:
169
diff
changeset
|
49 | source ~/.profile.common |
94
51ca19919894
Try to make setup easier, unify shell environments
Meredith Howard <mhoward@roomag.org>
parents:
diff
changeset
|
50 | |
272
f7fd81cbdb0c
clean up noisier forms
Meredith Howard <mhoward@roomag.org>
parents:
265
diff
changeset
|
51 | for envthing in $envthings; do |
f7fd81cbdb0c
clean up noisier forms
Meredith Howard <mhoward@roomag.org>
parents:
265
diff
changeset
|
52 | if [ -d ~/.$envthing ]; then |
f7fd81cbdb0c
clean up noisier forms
Meredith Howard <mhoward@roomag.org>
parents:
265
diff
changeset
|
53 | path[1,0]="$HOME/.$envthing/bin" |
f7fd81cbdb0c
clean up noisier forms
Meredith Howard <mhoward@roomag.org>
parents:
265
diff
changeset
|
54 | eval "$($envthing init - zsh)" |
195
390c49ee432d
DRY up my *env plugins
Meredith Howard <mhoward@roomag.org>
parents:
174
diff
changeset
|
55 | fi |
390c49ee432d
DRY up my *env plugins
Meredith Howard <mhoward@roomag.org>
parents:
174
diff
changeset
|
56 | done |
94
51ca19919894
Try to make setup easier, unify shell environments
Meredith Howard <mhoward@roomag.org>
parents:
diff
changeset
|
57 | |
51ca19919894
Try to make setup easier, unify shell environments
Meredith Howard <mhoward@roomag.org>
parents:
diff
changeset
|
58 | if [ -f ~/.zshrc.local ]; then |
51ca19919894
Try to make setup easier, unify shell environments
Meredith Howard <mhoward@roomag.org>
parents:
diff
changeset
|
59 | source ~/.zshrc.local |
51ca19919894
Try to make setup easier, unify shell environments
Meredith Howard <mhoward@roomag.org>
parents:
diff
changeset
|
60 | fi |
272
f7fd81cbdb0c
clean up noisier forms
Meredith Howard <mhoward@roomag.org>
parents:
265
diff
changeset
|
61 |