Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- # ~/.tmux.conf
- # Set the default input delay to improve Vim performance
- set -sg escape-time 1
- # tell tmux to use 256 colour terminal
- set -g default-terminal "screen-256color"
- # KEYS
- set -g mode-keys vi
- set -g status-keys vi
- # Reload .tmux.conf with "r"
- bind r source-file ~/.tmux.conf \; display "Reloaded!"
- # Select panes with vi-style movements
- bind h select-pane -L
- bind j select-pane -D
- bind k select-pane -U
- bind l select-pane -R
- set-option -g history-limit 10000
- # APPEARANCE
- # default statusbar colors
- set -g status-fg white
- set -g status-bg default
- set -g status-attr default
- # default window title colors
- setw -g window-status-fg white
- setw -g window-status-bg default
- setw -g window-status-attr dim
- # active window title colors
- setw -g window-status-current-fg cyan
- setw -g window-status-current-bg default
- #setw -g window-status-current-attr bright
- setw -g window-status-current-attr underscore
- # command/message line colors
- set -g message-fg white
- set -g message-bg black
- set -g message-attr bright
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement