Created
April 24, 2017 14:29
-
-
Save dra1n/699cf7704a350369fa9870f5e2902642 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| # improve colors | |
| set -g default-terminal 'screen-256color' | |
| # act like vim | |
| setw -g mode-keys vi | |
| bind h select-pane -L | |
| bind j select-pane -D | |
| bind k select-pane -U | |
| bind l select-pane -R | |
| bind-key -r C-h select-window -t :- | |
| bind-key -r C-l select-window -t :+ | |
| # act like GNU screen | |
| unbind C-b | |
| set -g prefix C-a | |
| # start window numbers at 1 to match keyboard order with tmux window order | |
| set -g base-index 1 | |
| # renumber windows sequentially after closing any of them | |
| set -g renumber-windows on | |
| # soften status bar color from harsh green to light gray | |
| set -g status-bg '#666666' | |
| set -g status-fg '#aaaaaa' | |
| # remove administrative debris (session name, hostname, time) in status bar | |
| set -g status-left '' | |
| set -g status-right '' | |
| # increase scrollback lines | |
| set -g history-limit 10000 | |
| # switch to last pane | |
| bind-key C-a last-pane | |
| # Local config | |
| if-shell "[ -f ~/.tmux.conf.local ]" 'source ~/.tmux.conf.local' | |
| # smart pane switching with awareness of vim splits | |
| # bind -n C-h run "(tmux display-message -p '#{pane_current_command}' | grep -iq vim && tmux send-keys C-h) || tmux select-pane -L" | |
| # bind -n C-j run "(tmux display-message -p '#{pane_current_command}' | grep -iq vim && tmux send-keys C-j) || tmux select-pane -D" | |
| # bind -n C-k run "(tmux display-message -p '#{pane_current_command}' | grep -iq vim && tmux send-keys C-k) || tmux select-pane -U" | |
| # bind -n C-l run "(tmux display-message -p '#{pane_current_command}' | grep -iq vim && tmux send-keys C-l) || tmux select-pane -R" | |
| # bind -n C-\ run "(tmux display-message -p '#{pane_current_command}' | grep -iq vim && tmux send-keys 'C-\\') || tmux select-pane -l" | |
| set-option -g default-command "reattach-to-user-namespace -l zsh" | |
| # Neovim stuff | |
| set -g -a terminal-overrides ',*:Ss=\E[%p1%d q:Se=\E[2 q' | |
| set -g default-terminal "screen-256color" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment