Mon, 22 May 2017 20:52:28 -0400
move begin into function too
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 | |
543 | 3 | umask 027 |
4 | ||
571 | 5 | make -s -C ~/.ssh || |
545
cd5b3906e687
add fallbacks for when make isn't around yet
Meredith Howard <mhoward@roomag.org>
parents:
543
diff
changeset
|
6 | cat .ssh/config.d/* > .ssh/config |
479
2b08e0404a8d
Allow local ssh configs
Meredith Howard <mhoward@roomag.org>
parents:
438
diff
changeset
|
7 | |
174
d94a247836c8
move some basics into a common profile
Meredith Howard <mhoward@roomag.org>
parents:
diff
changeset
|
8 | export EDITOR=vim |
514 | 9 | export SUDO_EDITOR=$HOME/bin/privim |
506 | 10 | export LESS='Ri' |
233
e31c379b5bda
no reinstall default for cpanm
Meredith Howard <mhoward@roomag.org>
parents:
179
diff
changeset
|
11 | export PERL_CPANM_OPT='-nq --prompt' |
174
d94a247836c8
move some basics into a common profile
Meredith Howard <mhoward@roomag.org>
parents:
diff
changeset
|
12 | export DEVEL_REPL_PROFILE='Standard' |
d94a247836c8
move some basics into a common profile
Meredith Howard <mhoward@roomag.org>
parents:
diff
changeset
|
13 | |
d94a247836c8
move some basics into a common profile
Meredith Howard <mhoward@roomag.org>
parents:
diff
changeset
|
14 | alias hgcd='cd $(hg root)' |
179 | 15 | 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
|
16 | |
438 | 17 | alias tmux-env='eval "$(tmux show-environment -s)"' |
339 | 18 | alias :e=vim |
19 | alias :q=exit | |
20 | ||
328 | 21 | if [ -d ~/.asdf ]; then |
22 | source ~/.asdf/asdf.sh | |
23 | fi | |
24 | ||
174
d94a247836c8
move some basics into a common profile
Meredith Howard <mhoward@roomag.org>
parents:
diff
changeset
|
25 | if [ -f ~/.profile.common.local ]; then |
d94a247836c8
move some basics into a common profile
Meredith Howard <mhoward@roomag.org>
parents:
diff
changeset
|
26 | source ~/.profile.common.local |
d94a247836c8
move some basics into a common profile
Meredith Howard <mhoward@roomag.org>
parents:
diff
changeset
|
27 | fi |