-
Notifications
You must be signed in to change notification settings - Fork 0
/
.tmux.conf
54 lines (41 loc) · 910 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
### NOTES ###
#
# Installation:
# 1. brew install tmux
#
# Usage:
# - Prefix is set to Ctrl-a
### END NOTES ###
### LOOK & FEEL ###
# set -g default-terminal "xterm-256color"
# statusbar colors
set-option -g status-bg colour235
set-option -g status-fg colour179
# window title colors
# TODO
# clock
set-window-option -g clock-mode-colour colour64
# status bar right contents
set -g status-right-length 65
set -g status-right "#[fg=colour187][#(itunesartist) - #(itunestrack)] #[fg=default][%H:%M %e-%b-%Y]"
set -g status-interval 5
set -g mouse on
### KEYS ###
#using C-a as prefix
unbind C-b
set-option -g prefix C-a
bind C-a send-prefix
# unbind /
# bind / last-window
# unbind %
# bind s split-window -v
# unbind '"'
# bind v split-window -h
# bind Escape copy-mode
# bind p paste-buffer
# unbind [
# bind [ previous-window
# unbind ]
# bind ] next-window
# unbind o
#bind o select-pane -t :.-