Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #
- # ~/.tmux.conf
- #
- # -----------------------------------------------------------------------
- # Main settings
- # -----------------------------------------------------------------------
- #
- set -g prefix C-a
- set -g repeat-time 0
- set -g set-titles off
- set -g bell-action any
- set -g display-time 10000
- set -g message-attr bold
- set -g message-bg black
- set -g message-fg red
- set -g status-attr bold
- set -g status-bg default
- set -g status-left-length 50
- set -g status-left "#[fg=blue][#[fg=white]#H#[fg=blue]]--["
- set -g status-right-length 50
- set -g status-right "#[fg=blue]]--(#[fg=magenta]#S#[fg=blue])"
- set -g status-justify left
- # -----------------------------------------------------------------------
- # Window style
- # -----------------------------------------------------------------------
- #
- setw -g utf8 on
- setw -g monitor-activity off
- setw -g mode-attr bold
- setw -g mode-bg default
- setw -g mode-fg white
- setw -g window-status-attr bold
- setw -g window-status-bg default
- setw -g window-status-fg red
- setw -g automatic-rename on
- # -----------------------------------------------------------------------
- # Key binding
- # -----------------------------------------------------------------------
- #
- unbind c
- bind c new-window
- bind C-c new-window
- unbind &
- bind k kill-window
- bind C-k kill-window
- unbind l
- bind a last-window
- bind C-a last-window
- unbind n
- bind n next-window
- bind C-n next-window
- unbind p
- bind p previous-window
- bind C-p previous-window
- unbind %
- bin h split-window -h
- bind C-h split-window -h
- unbind '"'
- bind v split-window -v
- bind C-v split-window -v
- unbind d
- bind d detach
- bind C-d detach
Advertisement
Add Comment
Please, Sign In to add comment