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
|
||||
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
|
||||
alias nano='nano -ciw '
|
||||
|
||||
# shortcut for tmux command
|
||||
alias tm="tmux new-session -A -s main"
|
||||
|
||||
# emacsclient
|
||||
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
|
||||
function mt {
|
||||
mosh $1 -- tmux new-session -A -s main
|
||||
mosh $1 -- tm
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
[user]
|
||||
name = Andrew Davidson
|
||||
email = amd@amd.im
|
||||
signingkey = /home/amd/.ssh/id_rsa
|
||||
signingkey = /home/amd/.ssh/id_ed25519
|
||||
|
||||
[color]
|
||||
ui = auto
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# More logical (to me) split keys.
|
||||
bind - split-window -p 38 -v
|
||||
bind | split-window -p 38 -h
|
||||
bind - split-window -v -l 38%
|
||||
bind | split-window -h -l 38%
|
||||
|
||||
set -g @plugin 'tmux-plugins/tpm'
|
||||
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