emacs - fix org table not align when there is special character
[dotfiles.git] / tmux.conf
1 ###############################################
2
3 # dependencies:
4 #       brew install reattach-to-user-namespace # for macvim
5
6
7 #set -g prefix ^O
8 #unbind ^b
9 #bind o send-prefix
10 unbind-key C-b
11 set -g prefix 'C-\'
12 bind-key 'C-\' send-prefix
13
14 set -g  status-fg  white
15 #set -g         status-bg  blue
16 set -g  status-bg black 
17 set-window-option -g  window-status-current-bg red
18 #set-option -g  status-right "#[fg=green]#T  #[fg=yellow,bold]#(date '+%Y-%m-%d %I:%M%P %a') "
19 #set-option -g  status-right "#[fg=green]#(whoami)  #[fg=yellow,bold]#(date '+%Y-%m-%d') #[fg=red,bold]#(date '+%I:%M') #[fg=yellow,bold]#(date '+%p %a') "
20 set-option -g  status-right "#[fg=yellow]#(date '+%Y-%m-%d') #[fg=red]#(date '+%I:%M') #[fg=yellow]#(date '+%p %a') "
21
22 ## automatic change the window title 
23 #set-option -g  set-titles      on
24 #set-option -g  set-titles-string       '#T'
25 #set-option -g  set-titles-string       "#(date '+%I:%M %P %a')"
26 #set-window-option -g   automatic-rename        on
27 set-option -g allow-rename off
28
29
30 #http://unix.stackexchange.com/questions/12032/create-new-window-with-current-directory-in-tmux
31 bind-key -n  "M-t"      new-window #-c '#{pane_current_path}'
32 bind-key -n  "M-n"      next-window
33 bind-key -n  "M-p"      previous-window
34 bind-key -n  "M-Space"  last-window
35
36
37 bind-key -n  "M-`"      select-window -t:0
38 bind-key -n  "M-1"      select-window -t:1
39 bind-key -n  "M-2"      select-window -t:2
40 bind-key -n  "M-3"      select-window -t:3
41 bind-key -n  "M-4"      select-window -t:4
42 bind-key -n  "M-5"      select-window -t:5
43 bind-key -n  "M-6"      select-window -t:6
44 bind-key -n  "M-7"      select-window -t:7
45 bind-key -n  "M-8"      select-window -t:8
46 bind-key -n  "M-9"      select-window -t:9
47
48 #bind-key -n  "C-M-h"   split-window -h
49 #bind-key -n  "C-M-v"   split-window -v
50 bind-key -n  "M-v"              split-window -h -c '#{pane_current_path}'
51 bind-key -n  "M-s"              split-window -v -c '#{pane_current_path}'
52
53 ##bind-key   "o"                select-pane -l
54 ##bind-key   "j"                select-pane -D
55 ##bind-key   "k"                select-pane -U
56 ##bind-key   "h"                select-pane -R
57 ##bind-key   "l"                select-pane -L
58
59 bind-key   "C-h"                resize-pane -L 3
60 bind-key   "C-j"                resize-pane -D 3
61 bind-key   "C-k"                resize-pane -U 3
62 bind-key   "C-l"                resize-pane -R 3
63
64 bind-key -n     "M-j"   select-pane     -D
65 bind-key -n     "M-k"   select-pane     -U
66 bind-key -n     "M-l"   select-pane     -R
67 bind-key -n     "M-h"   select-pane     -L
68 #bind-key -n    "M-o"   select-pane     -l
69
70 set-option      -g      mode-keys vi
71
72 ##set-window-option     -g      utf8 on
73
74 bind-key -n "M-i" copy-mode 
75
76
77 # refer http://askubuntu.com/questions/350718/problem-regarding-tmux-copy-mode
78 # $ tmux list-keys -t vi-copy
79 bind-key -t vi-copy "v" begin-selection
80 bind-key -t vi-copy "Space" page-down
81 bind-key -t vi-copy "BSpace" page-up
82 bind-key -t vi-copy "y" copy-selection  
83 bind-key -t vi-copy "K" halfpage-up
84 bind-key -t vi-copy "J" halfpage-down
85 #http://unix.stackexchange.com/questions/15715/getting-tmux-to-copy-a-buffer-to-the-clipboard
86 bind -t vi-copy y copy-pipe "reattach-to-user-namespace pbcopy"
87 ### mouse enable
88 # Reload tmux config
89 #bind r source-file ~/.tmux.conf
90 bind r source-file ~/.tmux.conf \; display "Reloaded!"
91 #set-option     -g      mouse-select-window  on
92 #set-option     -g      mouse-select-pane       on
93 #set-option     -g      mouse-resize-pane       on
94 #set-option     -g      mouse-utf8      on
95
96 #set-window-option      -g      mode-mouse      on
97
98 #set -g default-terminal "screen-256color"
99
100 ## macvim starting from tmux does't have "+ register, cannot using command+v to paste
101 # https://github.com/ChrisJohnsen/tmux-MacOSX-pasteboard/blob/master/Usage.md
102 # http://stackoverflow.com/questions/16618992/cant-paste-into-macvim
103 # set-option -g default-command 'reattach-to-user-namespace -l "$SHELL"'
104 set-option -g default-command 'command -v reattach-to-user-namespace >/dev/null && exec reattach-to-user-namespace -l "$SHELL" || exec "$SHELL"'
105
106
107
108 #set-option -g pane-border-fg colour235 #base02
109 #    set-option -g pane-active-border-fg colour240 #base01
110 #set -g status-justify centre
111 #setw -g monitor-activity on
112 #    set -g visual-activity on
113
114
115 #       set-window-option -g window-status-fg brightblue #base0
116 #    set-window-option -g window-status-bg colour236 
117 #    set-window-option -g window-status-attr dim
118
119 #    set-window-option -g window-status-current-fg brightred #orange
120 #    set-window-option -g window-status-current-bg colour236 
121 #    set-window-option -g window-status-current-attr bright
122
123 set-option -g base-index 1
124 setw -g pane-base-index 1
125 set-option -sg escape-time 0
126
127 #http://www.tylercipriani.com/2013/09/12/important-lines-in-my-tmux.html
128 #bind-key -n "M-\\" resize-pane -Z #\; display-message "Zoom zoom zoom"
129 bind-key -n "M-o" resize-pane -Z #\; display-message "Zoom zoom zoom"
130
131 set -g renumber-windows on
132 set-option -g history-limit 10000