]> Sergey Matveev's repositories - dotfiles.git/blob - tmux/.tmux.conf
Updated tmux has different options
[dotfiles.git] / tmux / .tmux.conf
1 set-option -g mode-keys vi
2 set-option -g base-index 1
3 set-option -g default-terminal "screen-256color"
4 set-option -g escape-time 1
5 set-option -g repeat-time 0
6 set-option -g history-limit 20000
7 set-option -g renumber-windows on
8
9 set-option -g prefix C-a
10 unbind-key C-b
11 bind-key C-a send-prefix
12
13 bind-key -n C-PgUp previous-window
14 bind-key -n C-PgDn next-window
15 bind-key -n S-PgUp copy-mode -u
16
17 bind '"' split-window -c "#{pane_current_path}"
18 bind % split-window -h -c "#{pane_current_path}"
19 bind c new-window -c "#{pane_current_path}"
20 bind ] paste-buffer -p
21
22 set-option -g status-style "bg=black,fg=white"
23 set-option -g status-left "#S>"
24 set-option -g status-right "#T"
25 set-option -g status-justify centre
26
27 set-window-option -g automatic-rename on
28 set-window-option -g window-status-format "#I:#W:#T#F"
29 set-window-option -g window-status-style "bg=green fg=black"
30 set-window-option -g window-status-current-format "#I:#W#F"
31 set-window-option -g window-status-current-style "bg=red"
32 set-window-option -g window-status-last-style "bg=cyan"
33
34 bind-key b set-option status
35 unbind-key L
36
37 bind-key u {
38     capture-pane -J
39     save-buffer /tmp/tmux-buffer
40     delete-buffer
41     display-popup -E -w 100% "urlview /tmp/tmux-buffer"
42 }
43
44 bind-key y {
45     capture-pane -J
46     save-buffer /tmp/tmux-buffer
47     delete-buffer
48     split-window 'vim -c "set listchars=" -c "match ExtraWhitespace //" /tmp/tmux-buffer'
49 }
50
51 bind-key Y {
52     capture-pane -J -S - -E -
53     save-buffer /tmp/tmux-buffer
54     delete-buffer
55     split-window 'vim -c "set listchars=" -c "match ExtraWhitespace //" /tmp/tmux-buffer'
56 }
57
58 bind-key t display-menu \
59     music t "display-popup -E -w 100% '~/bin/tmux-menu-music.sh'" \
60     pass p "display-popup -E '~/bin/tmux-menu-pass-session.sh'" \
61     dict d "display-popup -E -h 100% '~/bin/tmux-menu-dict.sh'" \
62     calc c "display-popup -E '~/bin/tmux-menu-calc.sh'" \
63     cal l "display-popup 'cal -3N'" \
64     top o "display-popup -E -h 100% 'top -s 1'"
65
66 bind-key o display-menu \
67     find o "display-popup -E -w 100% \"~/bin/tmux-fzf.zsh find '#{pane_current_path}'\"" \
68     buf-files f "display-popup -E -w 100% \"~/bin/tmux-fzf.zsh buf-files '#{pane_current_path}'\"" \
69     git-files g "display-popup -E -w 100% \"~/bin/tmux-fzf.zsh git-files '#{pane_current_path}'\"" \
70     git-branches b "display-popup -E -w 100% \"~/bin/tmux-fzf.zsh git-branches '#{pane_current_path}'\"" \
71     git-commits c "display-popup -E -w 100% \"~/bin/tmux-fzf.zsh git-commits '#{pane_current_path}'\""