-
Notifications
You must be signed in to change notification settings - Fork 1
/
.tmux.conf
37 lines (29 loc) · 953 Bytes
/
.tmux.conf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
set -g prefix C-space
#bind-key C-b last-window
unbind %
bind | split-window -h
bind - split-window -v
setw -g mode-keys vi
# vim bindings for pane navigation (requires >= 1.3)
bind h select-pane -L
bind j select-pane -D
bind k select-pane -U
bind l select-pane -R
#bind j down-pane
#bind k up-pane
# Maximize current pane on the left
bind m swap-pane -s 0 \; select-layout main-vertical
set -g status-bg black
set -g status-fg white
set -g status-left '#[fg=green]#[default]'
set -g status-right '#[fg=cyan]%Y-%m-%d #[fg=white]%H:%M#[default]'
set -g default-terminal "xterm-256color"
# setw -g monitor-activity on
# setw -g window-status-current-fg green
# setw -g automatic-rename on
# set-option -g pane-active-border-fg green
# set-option -g pane-active-border-bg black
# set-option -g pane-border-fg white
# set-option -g pane-border-bg black
# set -g default-command "/usr/local/bin/zsh -l"
# set -g default-shell "/usr/local/bin/zsh -l"