Created
July 2, 2015 16:49
-
-
Save carlzulauf/12d63f7e4159c148af5c to your computer and use it in GitHub Desktop.
tmux.conf
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
| # definitely DON'T use Ctrl+b. lame. | |
| unbind C-b | |
| # I never use the Insert key on the console, but it is a bit of a stretch | |
| # set -g prefix IC | |
| # ` is a cool prefix | |
| set -g prefix ` | |
| # this should allow for `` to be a literal ` | |
| bind-key ` send-prefix | |
| # 1 is easier to reach than 0 | |
| set -g base-index 1 | |
| # make 0 window 10 | |
| bind-key 0 select-window -t ':10' | |
| # - moves left, = moves right | |
| bind-key - previous-window | |
| bind-key = next-window | |
| bind-key p delete-buffer | |
| bind-key K kill-window | |
| bind-key Q kill-session | |
| #bind-key I source-file ~/.tmux/inteliguide.conf | |
| #bind-key N source-file ~/.tmux/na.conf | |
| # Why have all this RAM if you're not going to use it? | |
| set -g history-limit 12288 | |
| # black background, hostname red, date and 24hr time in white, extra space for asthetics | |
| set -g status-right '#[fg=red,bg=black] #H:#(echo $USER) ' | |
| set -g status-left '#[fg=green,bg=black] #S:#I ' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment