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 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 | #Prefix Key
set -g prefix ^a
set -g status-keys vi
setw -g mode-keys vi
setw -g mode-mouse on
unbind c
unbind i
unbind l
unbind s
unbind w
# Reload Config File
bind F12 source-file ~/.tmux.conf
# New Window
bind n neww
# Choose Window
bind m choose-window
# Choose Session
bind a choose-session
# Close Pane
bind c kill-pane
# Toggle Statusbar
bind t set status
# Select Windows Ctrl-[1-0]
bind -n ^F1 select-window -t 1
bind -n ^F2 select-window -t 2
bind -n ^F3 select-window -t 3
bind -n ^F4 select-window -t 4
bind -n ^F5 select-window -t 5
bind -n ^F6 select-window -t 6
bind -n ^F7 select-window -t 7
bind -n ^F8 select-window -t 8
bind -n ^F9 select-window -t 9
bind -n ^F10 select-window -t 10
bind -n ^F11 select-window -t 11
#bind -n ^F12 select-window -t 12
bind ^h select-pane -L
bind ^j select-pane -D
bind ^k select-pane -U
bind ^l select-pane -R
bind h resize-pane -L
bind j resize-pane -D
bind k resize-pane -U
bind l resize-pane -R
bind F1 select-pane -t 1
bind F2 select-pane -t 2
bind F3 select-pane -t 3
bind F4 select-pane -t 4
bind F5 select-pane -t 5
bind F6 select-pane -t 6
bind F7 select-pane -t 7
bind F8 select-pane -t 8
bind F9 select-pane -t 9
bind F10 select-pane -t 10
bind F11 select-pane -t 11
#bind F12 select-pane -t 12
bind i split-window -h
bind s split-window
# History
set-option -g history-limit 10000
# Terminal emulator window title
setw -g automatic-rename on
set-option -g set-titles on
set-option -g set-titles-string 'tmux: #W'
# Status bar
set-option -g status-justify centre
set-option -g status-bg "black"
set-option -g status-fg white
set-option -g status-interval 5
setw -g window-status-format "#[fg=black, bg=blue]⮀#[fg=#b4b4b4, bg=blue] #I #[fg=blue, bg=black]⮀ #[fg=#b4b4b4]#W"
setw -g window-status-current-format "#[fg=black, bg=#a35b66]⮀#[fg=#d5d5d5, bg=#a35b66] #I #[fg=#a35b66, bg=black]⮀ #[fg=#b4b4b4]#W"
set -g status-justify left
set-option -g status-left '#[fg=blue,bg=black] ♥'
set-option -g status-right '#[fg=red,bg=black] ♥ '
set -g pane-border-fg black
set -g pane-active-border-fg black
# Notifications
set-option -g visual-activity off
set-window-option -g monitor-activity off
# Clock
set-window-option -g clock-mode-colour green
set-window-option -g clock-mode-style 24
# Terminal and shell options
set -g default-terminal "screen-256color"
set -g default-shell /bin/zsh
set -g default-command /bin/zsh
# Allow xterm titles in terminal window, terminal scrolling with scrollbar, and setting overrides of C-Up, C-Down, C-Left, C-Right
set -g terminal-overrides "xterm*:XT:smcup@:rmcup@:kUP5=\eOA:kDN5=\eOB:kLFT5=\eOD:kRIT5=\eOC"
# Mouse options
#set-window-option -g mode-mouse on
set -g mouse-select-pane on
# Message
set -g message-bg brightblack
set -g message-fg white
|
x
penguin said about 7 years ago
so simple and elegaant - for my use it’s a perfect template. Weii prolly add more later on but for now its great