Fri, 18 Oct 2019 21:59:21 -0500
redundant
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 | ||
608 | 5 | make -s -C ~/.ssh || { |
6 | cat ~/.ssh/config.d/* > ~/.ssh/config && | |
7 | chmod 600 $_ | |
8 | } | |
479
2b08e0404a8d
Allow local ssh configs
Meredith Howard <mhoward@roomag.org>
parents:
438
diff
changeset
|
9 | |
756 | 10 | export MANPATH=$HOME/.man: |
11 | ||
174
d94a247836c8
move some basics into a common profile
Meredith Howard <mhoward@roomag.org>
parents:
diff
changeset
|
12 | export EDITOR=vim |
514 | 13 | export SUDO_EDITOR=$HOME/bin/privim |
506 | 14 | export LESS='Ri' |
749 | 15 | export GPG_TTY="$(tty)" |
696 | 16 | |
233
e31c379b5bda
no reinstall default for cpanm
Meredith Howard <mhoward@roomag.org>
parents:
179
diff
changeset
|
17 | export PERL_CPANM_OPT='-nq --prompt' |
174
d94a247836c8
move some basics into a common profile
Meredith Howard <mhoward@roomag.org>
parents:
diff
changeset
|
18 | export DEVEL_REPL_PROFILE='Standard' |
d94a247836c8
move some basics into a common profile
Meredith Howard <mhoward@roomag.org>
parents:
diff
changeset
|
19 | |
696 | 20 | export ASDF_CONCURRENCY='2' |
21 | export RUBY_EXTRA_CONFIGURE_OPTIONS="--enable-shared --enable-install-doc" | |
22 | ||
174
d94a247836c8
move some basics into a common profile
Meredith Howard <mhoward@roomag.org>
parents:
diff
changeset
|
23 | alias hgcd='cd $(hg root)' |
179 | 24 | 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
|
25 | |
438 | 26 | alias tmux-env='eval "$(tmux show-environment -s)"' |
339 | 27 | alias :e=vim |
28 | alias :q=exit | |
29 | ||
328 | 30 | if [ -d ~/.asdf ]; then |
31 | source ~/.asdf/asdf.sh | |
32 | fi | |
33 | ||
174
d94a247836c8
move some basics into a common profile
Meredith Howard <mhoward@roomag.org>
parents:
diff
changeset
|
34 | if [ -f ~/.profile.common.local ]; then |
d94a247836c8
move some basics into a common profile
Meredith Howard <mhoward@roomag.org>
parents:
diff
changeset
|
35 | source ~/.profile.common.local |
d94a247836c8
move some basics into a common profile
Meredith Howard <mhoward@roomag.org>
parents:
diff
changeset
|
36 | fi |