Compare commits
4 commits
5d6057ab98
...
1217cc979f
Author | SHA1 | Date | |
---|---|---|---|
1217cc979f | |||
e37481e868 | |||
28643fdb8f | |||
9a76f1e70e |
4 changed files with 2873 additions and 9 deletions
13
bash/.bashrc
13
bash/.bashrc
|
@ -38,9 +38,6 @@ if [[ -x `which apt-get >/dev/null 2>&1` ]]; then
|
||||||
HAS_APT=1
|
HAS_APT=1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [[ -x `which gnome-shell >/dev/null 2>&1` ]]; then
|
|
||||||
HAS_GNOME=1
|
|
||||||
fi
|
|
||||||
|
|
||||||
# _
|
# _
|
||||||
# _ __ _ __ ___ _ __ ___ _ __ | |_
|
# _ __ _ __ ___ _ __ ___ _ __ | |_
|
||||||
|
@ -197,8 +194,6 @@ alias pc='python -ic "from __future__ import division; from math import *"'
|
||||||
# Start nano with line numbering no wrapping and autoindenting
|
# Start nano with line numbering no wrapping and autoindenting
|
||||||
alias nano='nano -ciw '
|
alias nano='nano -ciw '
|
||||||
|
|
||||||
# shortcut for tmux command
|
|
||||||
alias tm="tmux new-session -A -s main"
|
|
||||||
|
|
||||||
# emacsclient
|
# emacsclient
|
||||||
alias ec="emacsclient -n -c -a emacs"
|
alias ec="emacsclient -n -c -a emacs"
|
||||||
|
@ -257,9 +252,15 @@ function archive-and-encrypt {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
# shortcut for tmux command
|
||||||
|
function tm {
|
||||||
|
tmux new-session -A -s main -x $(tput cols) -y $(tput lines)
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
# run mosh and tmux to a specific host
|
# run mosh and tmux to a specific host
|
||||||
function mt {
|
function mt {
|
||||||
mosh $1 -- tmux new-session -A -s main
|
mosh $1 -- tm
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
[user]
|
[user]
|
||||||
name = Andrew Davidson
|
name = Andrew Davidson
|
||||||
email = amd@amd.im
|
email = amd@amd.im
|
||||||
signingkey = /home/amd/.ssh/id_rsa
|
signingkey = /home/amd/.ssh/id_ed25519
|
||||||
|
|
||||||
[color]
|
[color]
|
||||||
ui = auto
|
ui = auto
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
# More logical (to me) split keys.
|
# More logical (to me) split keys.
|
||||||
bind - split-window -p 38 -v
|
bind - split-window -v -l 38%
|
||||||
bind | split-window -p 38 -h
|
bind | split-window -h -l 38%
|
||||||
|
|
||||||
set -g @plugin 'tmux-plugins/tpm'
|
set -g @plugin 'tmux-plugins/tpm'
|
||||||
set -g @plugin 'tmux-plugins/tmux-sensible'
|
set -g @plugin 'tmux-plugins/tmux-sensible'
|
||||||
|
|
2863
vim/.vim/autoload/plug.vim
Normal file
2863
vim/.vim/autoload/plug.vim
Normal file
File diff suppressed because it is too large
Load diff
Loading…
Reference in a new issue