Fixed tsh command. Added search and resource aliases in bashrc. Added autojump to desktop and server.txt. Readded vim bindings to tmux.conf

This commit is contained in:
Austen Adler 2014-06-23 22:53:55 -04:00
parent 32b7d73e00
commit 43cf1140ad
4 changed files with 9 additions and 1 deletions

4
bashrc
View File

@ -102,7 +102,7 @@ if ! shopt -oq posix; then
fi
PATH=$PATH:~/tmp/ucpp/ucpp/
function tsh(){
ssh $* -t 'tmux a || tmux || /bin/bash'
ssh $* -t 'tmux a||wemux a||tmux;exit'&&clear
}
. /usr/share/autojump/autojump.sh
[[ -s /home/stonewareslord/.autojump/etc/profile.d/autojump.sh ]] && source /home/stonewareslord/.autojump/etc/profile.d/autojump.sh
@ -147,7 +147,9 @@ if [ "$BASH" ]; then
readonly HISTCONTROL
fi
alias resource='. ~/.bashrc'
alias install='sudo apt-get install'
alias search='sudo apt-cache search'
alias remove='sudo apt-get remove'
alias update='sudo apt-get update'
alias upgrade='sudo apt-get upgrade'

View File

@ -60,6 +60,7 @@ gtk-redshift
lm-sensors
unetbootin
openvpn
autojump
#clemetine
#IN STARTUP ITEMS: gtk-redshift -l 36.3:-80.3 -t 6500:4000
#sshfs stonewareslord@10.0.1.201:/var/www/ /mnt

View File

@ -30,3 +30,4 @@ alien
lynx-cur
lm-sensors
openvpn
autojump

View File

@ -14,6 +14,10 @@ set-option -g history-limit 50000
set -g prefix C-a
bind C-a send-prefix
unbind C-b
bind-key k select-pane -U
bind-key j select-pane -D
bind-key h select-pane -L
bind-key l select-pane -R
bind-key H resize-pane -L 5
bind-key J resize-pane -D 5
bind-key K resize-pane -U 5