added htoprc, changed file structure to work well with GNU stow.
This commit is contained in:
parent
7e0e7f88b9
commit
2883f9499d
3 changed files with 26 additions and 135 deletions
19
tmux/.tmux.conf
Normal file
19
tmux/.tmux.conf
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue