Upload files to ''

added .tmux.conf
This commit is contained in:
Xen0 2018-03-18 08:01:19 +01:00
parent 1a4859e99d
commit 4a4b1f2ab9
1 changed files with 20 additions and 0 deletions

20
.tmux.conf Normal file
View File

@ -0,0 +1,20 @@
# display options
set -g renumber-windows on
setw -g automatic-rename on
set -g default-terminal "tmux-256color"
set-option -g set-titles on
setw -g mouse on
# remap prefix from 'C-b' to 'C-a'
unbind C-b
set-option -g prefix C-a
bind-key C-a send-prefix
# split panes using | and -
bind | split-window -h
bind - split-window -v
unbind '"'
unbind %
# theme
set -g status-bg white
set -g status-fg black
set -g window-status-current-fg yellow