.profile.common

Tue, 13 Jun 2017 11:01:17 -0400

author
Meredith Howard <mhoward@roomag.org>
date
Tue, 13 Jun 2017 11:01:17 -0400
changeset 608
177dfb2889ab
parent 605
96cef8773963
child 696
46dd5299006d
permissions
-rw-r--r--

explicit chmod

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
f033acea6b1e restrict umask
Meredith Howard <mhoward@roomag.org>
parents: 514
diff changeset
3 umask 027
f033acea6b1e restrict umask
Meredith Howard <mhoward@roomag.org>
parents: 514
diff changeset
4
608
177dfb2889ab explicit chmod
Meredith Howard <mhoward@roomag.org>
parents: 605
diff changeset
5 make -s -C ~/.ssh || {
177dfb2889ab explicit chmod
Meredith Howard <mhoward@roomag.org>
parents: 605
diff changeset
6 cat ~/.ssh/config.d/* > ~/.ssh/config &&
177dfb2889ab explicit chmod
Meredith Howard <mhoward@roomag.org>
parents: 605
diff changeset
7 chmod 600 $_
177dfb2889ab explicit chmod
Meredith Howard <mhoward@roomag.org>
parents: 605
diff changeset
8 }
479
2b08e0404a8d Allow local ssh configs
Meredith Howard <mhoward@roomag.org>
parents: 438
diff changeset
9
174
d94a247836c8 move some basics into a common profile
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
10 export EDITOR=vim
514
d596509d91f0 safer sudo -e
Meredith Howard <mhoward@roomag.org>
parents: 506
diff changeset
11 export SUDO_EDITOR=$HOME/bin/privim
506
2a6899f40b2e smartcase please
Meredith Howard <mhoward@roomag.org>
parents: 480
diff changeset
12 export LESS='Ri'
233
e31c379b5bda no reinstall default for cpanm
Meredith Howard <mhoward@roomag.org>
parents: 179
diff changeset
13 export PERL_CPANM_OPT='-nq --prompt'
174
d94a247836c8 move some basics into a common profile
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
14 export DEVEL_REPL_PROFILE='Standard'
d94a247836c8 move some basics into a common profile
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
15
d94a247836c8 move some basics into a common profile
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
16 alias hgcd='cd $(hg root)'
179
fe7e8d6d1853 fix gcd
Meredith Howard <mhoward@roomag.org>
parents: 174
diff changeset
17 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
18
438
862d1e79b830 add tmux-env
Meredith Howard <mhoward@roomag.org>
parents: 420
diff changeset
19 alias tmux-env='eval "$(tmux show-environment -s)"'
339
a2f7e73ea74b add :e and :q aliases
Meredith Howard <mhoward@roomag.org>
parents: 328
diff changeset
20 alias :e=vim
a2f7e73ea74b add :e and :q aliases
Meredith Howard <mhoward@roomag.org>
parents: 328
diff changeset
21 alias :q=exit
a2f7e73ea74b add :e and :q aliases
Meredith Howard <mhoward@roomag.org>
parents: 328
diff changeset
22
328
b3b18ced6949 add asdf-vm
Meredith Howard <mhoward@roomag.org>
parents: 233
diff changeset
23 if [ -d ~/.asdf ]; then
b3b18ced6949 add asdf-vm
Meredith Howard <mhoward@roomag.org>
parents: 233
diff changeset
24 source ~/.asdf/asdf.sh
b3b18ced6949 add asdf-vm
Meredith Howard <mhoward@roomag.org>
parents: 233
diff changeset
25 fi
b3b18ced6949 add asdf-vm
Meredith Howard <mhoward@roomag.org>
parents: 233
diff changeset
26
174
d94a247836c8 move some basics into a common profile
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
27 if [ -f ~/.profile.common.local ]; then
d94a247836c8 move some basics into a common profile
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
28 source ~/.profile.common.local
d94a247836c8 move some basics into a common profile
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
29 fi

mercurial