.profile.common

Wed, 22 Jun 2016 10:47:14 -0400

author
Meredith Howard <mhoward@roomag.org>
date
Wed, 22 Jun 2016 10:47:14 -0400
changeset 339
a2f7e73ea74b
parent 328
b3b18ced6949
child 420
6959fd5dfb58
permissions
-rw-r--r--

add :e and :q aliases

174
d94a247836c8 move some basics into a common profile
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
1 # simple profile stuff that is common to both zsh and bash
d94a247836c8 move some basics into a common profile
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
2
d94a247836c8 move some basics into a common profile
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
3 export EDITOR=vim
233
e31c379b5bda no reinstall default for cpanm
Meredith Howard <mhoward@roomag.org>
parents: 179
diff changeset
4 export PERL_CPANM_OPT='-nq --prompt'
174
d94a247836c8 move some basics into a common profile
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
5 export DEVEL_REPL_PROFILE='Standard'
d94a247836c8 move some basics into a common profile
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
6
d94a247836c8 move some basics into a common profile
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
7 alias hgcd='cd $(hg root)'
179
fe7e8d6d1853 fix gcd
Meredith Howard <mhoward@roomag.org>
parents: 174
diff changeset
8 alias gcd='cd "$(git rev-parse --show-toplevel)"'
174
d94a247836c8 move some basics into a common profile
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
9
339
a2f7e73ea74b add :e and :q aliases
Meredith Howard <mhoward@roomag.org>
parents: 328
diff changeset
10 alias :e=vim
a2f7e73ea74b add :e and :q aliases
Meredith Howard <mhoward@roomag.org>
parents: 328
diff changeset
11 alias :q=exit
a2f7e73ea74b add :e and :q aliases
Meredith Howard <mhoward@roomag.org>
parents: 328
diff changeset
12
328
b3b18ced6949 add asdf-vm
Meredith Howard <mhoward@roomag.org>
parents: 233
diff changeset
13 if [ -d ~/.asdf ]; then
b3b18ced6949 add asdf-vm
Meredith Howard <mhoward@roomag.org>
parents: 233
diff changeset
14 source ~/.asdf/asdf.sh
b3b18ced6949 add asdf-vm
Meredith Howard <mhoward@roomag.org>
parents: 233
diff changeset
15 fi
b3b18ced6949 add asdf-vm
Meredith Howard <mhoward@roomag.org>
parents: 233
diff changeset
16
174
d94a247836c8 move some basics into a common profile
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
17 if [ -f ~/.profile.common.local ]; then
d94a247836c8 move some basics into a common profile
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
18 source ~/.profile.common.local
d94a247836c8 move some basics into a common profile
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
19 fi
d94a247836c8 move some basics into a common profile
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
20

mercurial