dotfiles/.tmux.conf##Linux

30 lines
653 B
Plaintext
Raw Normal View History

2016-12-15 00:30:09 -05:00
# 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
2016-12-15 00:30:09 -05:00
# reload config
bind r source-file ~/.tmux.conf \; display-message "Config reloaded..."
# spliting windoww
unbind %
unbind '"'
bind | split-window -h
bind - split-window -v
2017-03-11 02:57:12 -05:00
# setting vi mode
set-window-option -g mode-keys vi
2016-12-15 00:30:09 -05:00
# status bar
set -g status-right '♥#(acpi | cut -d ',' -f 2) | %H:%m %d-%b-%y '
2017-04-24 12:11:28 -04:00
# default shell
set -g default-terminal "screen-256color" /bin/bash
#set-option -g default-shell /bin/bash