added htoprc, changed file structure to work well with GNU stow.

This commit is contained in:
Gabe Venberg 2018-06-25 22:56:26 -05:00
parent 7e0e7f88b9
commit 2883f9499d
3 changed files with 26 additions and 135 deletions

19
tmux/.tmux.conf Normal file
View file

@ -0,0 +1,19 @@
#remap prefix from C-b to alt-a
unbind C-b
set-option -g prefix M-a
bind-key M-a send-prefix
#split panes using | and -
bind | split-window -h
bind - split-window -v
unbind '"'
unbind %
#switch panes using alt-hjkl
bind -n M-h select-pane -L
bind -n M-l select-pane -R
bind -n M-k select-pane -U
bind -n M-j select-pane -D
#dont rename windows automatically
set-option -g allow-rename off