Mon, 13 Mar 2023 15:45:24 -0500
remove standardrb glue now that mason-lspconfig is updated
837 | 1 | # vim: ft=bash |
174
d94a247836c8
move some basics into a common profile
Meredith Howard <mhoward@roomag.org>
parents:
diff
changeset
|
2 | # 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
|
3 | |
1051
5c69bfa6dc3c
Switch default to nvim
Meredith Howard <mhoward@roomag.org>
parents:
1009
diff
changeset
|
4 | # most ssh versions support include now, see if i can... |
890
fe8cbacbbb5d
Fix ssh-config fallback
Meredith Howard <mhoward@roomag.org>
parents:
851
diff
changeset
|
5 | make -s -C ~/.ssh || { |
fe8cbacbbb5d
Fix ssh-config fallback
Meredith Howard <mhoward@roomag.org>
parents:
851
diff
changeset
|
6 | umask 077 |
fe8cbacbbb5d
Fix ssh-config fallback
Meredith Howard <mhoward@roomag.org>
parents:
851
diff
changeset
|
7 | cat ~/.ssh/config.d/* > ~/.ssh/config |
fe8cbacbbb5d
Fix ssh-config fallback
Meredith Howard <mhoward@roomag.org>
parents:
851
diff
changeset
|
8 | } |
543 | 9 | |
890
fe8cbacbbb5d
Fix ssh-config fallback
Meredith Howard <mhoward@roomag.org>
parents:
851
diff
changeset
|
10 | umask 027 |
479
2b08e0404a8d
Allow local ssh configs
Meredith Howard <mhoward@roomag.org>
parents:
438
diff
changeset
|
11 | |
1051
5c69bfa6dc3c
Switch default to nvim
Meredith Howard <mhoward@roomag.org>
parents:
1009
diff
changeset
|
12 | HISTIGNORE="ls:cd:cd -:pwd:exit:date:privim" |
5c69bfa6dc3c
Switch default to nvim
Meredith Howard <mhoward@roomag.org>
parents:
1009
diff
changeset
|
13 | |
1009 | 14 | export MANPATH=$HOME/.man:$HOME/.local/share/man: |
756 | 15 | |
851
b8501cb649b6
automatically try to pick up local::lib
Meredith Howard <mhoward@roomag.org>
parents:
837
diff
changeset
|
16 | if [ -d ~/perl5/lib ]; then |
b8501cb649b6
automatically try to pick up local::lib
Meredith Howard <mhoward@roomag.org>
parents:
837
diff
changeset
|
17 | eval "$(perl -Mlocal::lib)" |
b8501cb649b6
automatically try to pick up local::lib
Meredith Howard <mhoward@roomag.org>
parents:
837
diff
changeset
|
18 | fi |
b8501cb649b6
automatically try to pick up local::lib
Meredith Howard <mhoward@roomag.org>
parents:
837
diff
changeset
|
19 | |
991
a925474b9558
Handle M1 homebrew setup if present
Meredith Howard <mhoward@roomag.org>
parents:
988
diff
changeset
|
20 | if [ -d /opt/homebrew ]; then |
a925474b9558
Handle M1 homebrew setup if present
Meredith Howard <mhoward@roomag.org>
parents:
988
diff
changeset
|
21 | eval "$(/opt/homebrew/bin/brew shellenv)" |
a925474b9558
Handle M1 homebrew setup if present
Meredith Howard <mhoward@roomag.org>
parents:
988
diff
changeset
|
22 | fi |
a925474b9558
Handle M1 homebrew setup if present
Meredith Howard <mhoward@roomag.org>
parents:
988
diff
changeset
|
23 | |
851
b8501cb649b6
automatically try to pick up local::lib
Meredith Howard <mhoward@roomag.org>
parents:
837
diff
changeset
|
24 | if [ -d ~/.asdf ]; then |
b8501cb649b6
automatically try to pick up local::lib
Meredith Howard <mhoward@roomag.org>
parents:
837
diff
changeset
|
25 | source ~/.asdf/asdf.sh |
b8501cb649b6
automatically try to pick up local::lib
Meredith Howard <mhoward@roomag.org>
parents:
837
diff
changeset
|
26 | fi |
b8501cb649b6
automatically try to pick up local::lib
Meredith Howard <mhoward@roomag.org>
parents:
837
diff
changeset
|
27 | |
1066
c826661721a8
detect presence of nvim
Meredith Howard <mhoward@roomag.org>
parents:
1051
diff
changeset
|
28 | if [ -x "$(command -v nvim)" ]; then |
c826661721a8
detect presence of nvim
Meredith Howard <mhoward@roomag.org>
parents:
1051
diff
changeset
|
29 | export EDITOR=nvim |
c826661721a8
detect presence of nvim
Meredith Howard <mhoward@roomag.org>
parents:
1051
diff
changeset
|
30 | alias vim=nvim |
c826661721a8
detect presence of nvim
Meredith Howard <mhoward@roomag.org>
parents:
1051
diff
changeset
|
31 | alias view="nvim -R" |
c826661721a8
detect presence of nvim
Meredith Howard <mhoward@roomag.org>
parents:
1051
diff
changeset
|
32 | else |
c826661721a8
detect presence of nvim
Meredith Howard <mhoward@roomag.org>
parents:
1051
diff
changeset
|
33 | export editor=vim |
c826661721a8
detect presence of nvim
Meredith Howard <mhoward@roomag.org>
parents:
1051
diff
changeset
|
34 | fi |
c826661721a8
detect presence of nvim
Meredith Howard <mhoward@roomag.org>
parents:
1051
diff
changeset
|
35 | |
c826661721a8
detect presence of nvim
Meredith Howard <mhoward@roomag.org>
parents:
1051
diff
changeset
|
36 | export SUDO_EDITOR=$HOME/bin/privim |
c826661721a8
detect presence of nvim
Meredith Howard <mhoward@roomag.org>
parents:
1051
diff
changeset
|
37 | export LESS='Ri' |
c826661721a8
detect presence of nvim
Meredith Howard <mhoward@roomag.org>
parents:
1051
diff
changeset
|
38 | export GPG_TTY="$(tty)" |
c826661721a8
detect presence of nvim
Meredith Howard <mhoward@roomag.org>
parents:
1051
diff
changeset
|
39 | |
c826661721a8
detect presence of nvim
Meredith Howard <mhoward@roomag.org>
parents:
1051
diff
changeset
|
40 | export PERL_CPANM_OPT='-nq --prompt' |
c826661721a8
detect presence of nvim
Meredith Howard <mhoward@roomag.org>
parents:
1051
diff
changeset
|
41 | |
c826661721a8
detect presence of nvim
Meredith Howard <mhoward@roomag.org>
parents:
1051
diff
changeset
|
42 | export ASDF_CONCURRENCY='2' |
c826661721a8
detect presence of nvim
Meredith Howard <mhoward@roomag.org>
parents:
1051
diff
changeset
|
43 | export RUBY_EXTRA_CONFIGURE_OPTIONS="--enable-shared --enable-install-doc" |
c826661721a8
detect presence of nvim
Meredith Howard <mhoward@roomag.org>
parents:
1051
diff
changeset
|
44 | |
835
49826fe1c850
pluck just a few things from omz common-aliases
Meredith Howard <mhoward@roomag.org>
parents:
756
diff
changeset
|
45 | alias l='ls -lFh' #size,show type,human readable |
49826fe1c850
pluck just a few things from omz common-aliases
Meredith Howard <mhoward@roomag.org>
parents:
756
diff
changeset
|
46 | alias la='ls -lAFh' #long list,show almost all,show type,human readable |
49826fe1c850
pluck just a few things from omz common-aliases
Meredith Howard <mhoward@roomag.org>
parents:
756
diff
changeset
|
47 | alias lt='ls -ltFh' #long list,sorted by date,show type,human readable |
49826fe1c850
pluck just a few things from omz common-aliases
Meredith Howard <mhoward@roomag.org>
parents:
756
diff
changeset
|
48 | alias ll='ls -l' #long list |
49826fe1c850
pluck just a few things from omz common-aliases
Meredith Howard <mhoward@roomag.org>
parents:
756
diff
changeset
|
49 | alias rm='rm -i' |
49826fe1c850
pluck just a few things from omz common-aliases
Meredith Howard <mhoward@roomag.org>
parents:
756
diff
changeset
|
50 | alias cp='cp -i' |
49826fe1c850
pluck just a few things from omz common-aliases
Meredith Howard <mhoward@roomag.org>
parents:
756
diff
changeset
|
51 | alias mv='mv -i' |
49826fe1c850
pluck just a few things from omz common-aliases
Meredith Howard <mhoward@roomag.org>
parents:
756
diff
changeset
|
52 | |
174
d94a247836c8
move some basics into a common profile
Meredith Howard <mhoward@roomag.org>
parents:
diff
changeset
|
53 | alias hgcd='cd $(hg root)' |
179 | 54 | 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
|
55 | |
988 | 56 | vg() { |
1067
08675f3a85f6
more default editor switching
Meredith Howard <mhoward@roomag.org>
parents:
1066
diff
changeset
|
57 | $EDITOR +copen -q <(ag --vimgrep "${@:?No pattern provided.}") |
988 | 58 | } |
59 | ||
438 | 60 | alias tmux-env='eval "$(tmux show-environment -s)"' |
1067
08675f3a85f6
more default editor switching
Meredith Howard <mhoward@roomag.org>
parents:
1066
diff
changeset
|
61 | alias :e=$EDITOR |
339 | 62 | alias :q=exit |
63 | ||
174
d94a247836c8
move some basics into a common profile
Meredith Howard <mhoward@roomag.org>
parents:
diff
changeset
|
64 | if [ -f ~/.profile.common.local ]; then |
d94a247836c8
move some basics into a common profile
Meredith Howard <mhoward@roomag.org>
parents:
diff
changeset
|
65 | source ~/.profile.common.local |
d94a247836c8
move some basics into a common profile
Meredith Howard <mhoward@roomag.org>
parents:
diff
changeset
|
66 | fi |