changed tmux config for tower

This commit is contained in:
Andrei Stoica 2016-12-15 00:51:48 -05:00
parent 59a9832037
commit 1e26d770ee
2 changed files with 23 additions and 0 deletions

23
.tmux.conf##Linux.tower Normal file
View File

@ -0,0 +1,23 @@
# remap prefix from 'C-b' to 'C-a'
unbind C-b
set-option -g prefix C-a
bind-key C-a send-prefix
# Enable mouse control (clickable windows, panes, resizable panes)
set -g mouse on
# Initialize sesions
bind W source-file ~/.tmux/work
# reload config
bind r source-file ~/.tmux.conf \; display-message "Config reloaded..."
# spliting windoww
unbind %
unbind '"'
bind | split-window -h
bind - split-window -v
# status bar
set -g status-right '%H:%m %d-%b-%y '