Last active
June 11, 2016 17:31
-
-
Save infurno/974542068a853fd803287548fe00d015 to your computer and use it in GitHub Desktop.
.tmux.config
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
| #Hal's TMUX Config | |
| unbind C-b | |
| set -g prefix C-a | |
| #source-file "${home}.tmux-themepack/powerline/block/blue.tmuxtheme" | |
| source-file "${home}.tmux-themepack/powerline/block/cyan.tmuxtheme" | |
| unbind r | |
| bind r source-file ~/.tmux.conf | |
| set -g base-index 1 | |
| set -g default-terminal "screen-256color" | |
| setw -g utf8 on | |
| set -g status-utf8 on | |
| # Status bar config | |
| set -g status-left "#h:[#S]" | |
| set -g status-left-length 50 | |
| set -g status-right-length 50 | |
| set -g status-right "%H:%M %d-%h-%Y" | |
| setw -g window-status-current-format "|#I:#W|" | |
| # rebind pane tiling | |
| bind V split-window -h | |
| bind H split-window | |
| #quick pane cycling | |
| unbind ^A | |
| bind ^A select-pane -t :.+ | |
| #screen like window toggling | |
| #bind Tab last-window | |
| bind -n F3 next-window | |
| bind -n F4 last-window | |
| bind Escape copy-mode | |
| bind -n F5 select-pane -L | |
| bind -n F6 select-pane -D | |
| bind -n F7 select-pane -U | |
| bind -n F8 select-pane -R | |
| # vim movement bindings | |
| set-window-option -g mode-keys vi | |
| bind h select-pane -L | |
| bind j select-pane -D | |
| bind k select-pane -U | |
| bind l select-pane -R |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment