Last active
April 25, 2018 23:29
-
-
Save pera/dc3ea5847095d232396527abec6663bb to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
set -g prefix C-a | |
unbind C-b | |
bind a send-prefix | |
set -g status-bg blue | |
set -g status-fg white | |
bind | split-window -h -c "#{pane_current_path}" | |
bind - split-window -v -c "#{pane_current_path}" | |
unbind '"' | |
unbind % | |
bind h select-pane -L | |
bind j select-pane -D | |
bind k select-pane -U | |
bind l select-pane -R | |
bind -r H resize-pane -L 5 | |
bind -r J resize-pane -D 5 | |
bind -r K resize-pane -U 5 | |
bind -r L resize-pane -R 5 | |
set -g prefix C-a | |
bind C-a last-pane | |
bind TAB last-window | |
set -sg escape-time 0 | |
set -g default-terminal "screen-256color" | |
set -g allow-rename off | |
set -g automatic-rename off | |
set -g status-right "#{?window_zoomed_flag,(ZOOMED),}" | |
set -g window-status-form "#{?window_last_flag,#[fg=brightwhite],}#I:#{pane_current_command}" | |
set -g window-status-current-form "#[fg=brightwhite,underscore]#I:#{pane_current_command}" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment