Tue, 30 May 2017 16:51:55 -0400
use ltag over lselect
511
f175eea7ad19
easier manpath changing
Meredith Howard <mhoward@roomag.org>
parents:
469
diff
changeset
|
1 | typeset -U path manpath 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/gitfast |
9315299c4adc
build plugin lists so local zshrc can mess with them before loading
Meredith Howard <mhoward@roomag.org>
parents:
242
diff
changeset
|
14 | 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
|
15 | ) |
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 | zsh_plugins=( |
9315299c4adc
build plugin lists so local zshrc can mess with them before loading
Meredith Howard <mhoward@roomag.org>
parents:
242
diff
changeset
|
18 | 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
|
19 | ~/.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
|
20 | ) |
94
51ca19919894
Try to make setup easier, unify shell environments
Meredith Howard <mhoward@roomag.org>
parents:
diff
changeset
|
21 | |
95 | 22 | if [ -f ~/.zshrc.local-pre ]; then |
94
51ca19919894
Try to make setup easier, unify shell environments
Meredith Howard <mhoward@roomag.org>
parents:
diff
changeset
|
23 | source ~/.zshrc.local-pre |
51ca19919894
Try to make setup easier, unify shell environments
Meredith Howard <mhoward@roomag.org>
parents:
diff
changeset
|
24 | fi |
51ca19919894
Try to make setup easier, unify shell environments
Meredith Howard <mhoward@roomag.org>
parents:
diff
changeset
|
25 | |
241 | 26 | if [ -f ~/.zgen/zgen.zsh ]; then |
27 | source ~/.zgen/zgen.zsh | |
94
51ca19919894
Try to make setup easier, unify shell environments
Meredith Howard <mhoward@roomag.org>
parents:
diff
changeset
|
28 | |
241 | 29 | if ! zgen saved; then |
30 | zgen oh-my-zsh | |
272
f7fd81cbdb0c
clean up noisier forms
Meredith Howard <mhoward@roomag.org>
parents:
265
diff
changeset
|
31 | 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
|
32 | |
272
f7fd81cbdb0c
clean up noisier forms
Meredith Howard <mhoward@roomag.org>
parents:
265
diff
changeset
|
33 | for plugin in $zsh_plugins; do zgen load $plugin; done |
241 | 34 | zgen save |
35 | fi | |
36 | fi | |
94
51ca19919894
Try to make setup easier, unify shell environments
Meredith Howard <mhoward@roomag.org>
parents:
diff
changeset
|
37 | |
272
f7fd81cbdb0c
clean up noisier forms
Meredith Howard <mhoward@roomag.org>
parents:
265
diff
changeset
|
38 | |
f7fd81cbdb0c
clean up noisier forms
Meredith Howard <mhoward@roomag.org>
parents:
265
diff
changeset
|
39 | path[1,0]="$HOME/bin" |
94
51ca19919894
Try to make setup easier, unify shell environments
Meredith Howard <mhoward@roomag.org>
parents:
diff
changeset
|
40 | |
244 | 41 | REPORTTIME=5 |
42 | ||
43 | setopt list_packed | |
44 | setopt correct | |
45 | setopt hist_reduce_blanks | |
46 | setopt hist_save_no_dups | |
331
ac7f662c1db5
add interactive_comments
Meredith Howard <mhoward@roomag.org>
parents:
272
diff
changeset
|
47 | setopt interactive_comments |
244 | 48 | |
49 | export HISTIGNORE="ls:cd:cd -:pwd:exit:date:* --help" | |
50 | ||
469 | 51 | bindkey '\e\e' kill-whole-line |
52 | ||
174
d94a247836c8
move some basics into a common profile
Meredith Howard <mhoward@roomag.org>
parents:
169
diff
changeset
|
53 | source ~/.profile.common |
94
51ca19919894
Try to make setup easier, unify shell environments
Meredith Howard <mhoward@roomag.org>
parents:
diff
changeset
|
54 | |
272
f7fd81cbdb0c
clean up noisier forms
Meredith Howard <mhoward@roomag.org>
parents:
265
diff
changeset
|
55 | for envthing in $envthings; do |
f7fd81cbdb0c
clean up noisier forms
Meredith Howard <mhoward@roomag.org>
parents:
265
diff
changeset
|
56 | if [ -d ~/.$envthing ]; then |
f7fd81cbdb0c
clean up noisier forms
Meredith Howard <mhoward@roomag.org>
parents:
265
diff
changeset
|
57 | path[1,0]="$HOME/.$envthing/bin" |
f7fd81cbdb0c
clean up noisier forms
Meredith Howard <mhoward@roomag.org>
parents:
265
diff
changeset
|
58 | eval "$($envthing init - zsh)" |
195
390c49ee432d
DRY up my *env plugins
Meredith Howard <mhoward@roomag.org>
parents:
174
diff
changeset
|
59 | fi |
390c49ee432d
DRY up my *env plugins
Meredith Howard <mhoward@roomag.org>
parents:
174
diff
changeset
|
60 | done |
94
51ca19919894
Try to make setup easier, unify shell environments
Meredith Howard <mhoward@roomag.org>
parents:
diff
changeset
|
61 | |
51ca19919894
Try to make setup easier, unify shell environments
Meredith Howard <mhoward@roomag.org>
parents:
diff
changeset
|
62 | if [ -f ~/.zshrc.local ]; then |
51ca19919894
Try to make setup easier, unify shell environments
Meredith Howard <mhoward@roomag.org>
parents:
diff
changeset
|
63 | source ~/.zshrc.local |
51ca19919894
Try to make setup easier, unify shell environments
Meredith Howard <mhoward@roomag.org>
parents:
diff
changeset
|
64 | fi |
272
f7fd81cbdb0c
clean up noisier forms
Meredith Howard <mhoward@roomag.org>
parents:
265
diff
changeset
|
65 |