Created
February 1, 2013 23:58
-
-
Save omgitsads/4695042 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-option -g status on | |
set-option -g status-interval 2 | |
set-option -g status-utf8 on | |
set-option -g status-justify "centre" | |
set-option -g status-left-length 60 | |
set-option -g status-right-length 90 | |
set-option -g status-left "#(~/.tmux-powerline/powerline.sh left)" | |
set-option -g status-right "#(~/.tmux-powerline/powerline.sh right)" | |
set -g status-bg black | |
set-window-option -g window-status-current-format "#[fg=black, bg=colour27]⮀#[fg=colour255, bg=colour27] #I ⮁ #W #[fg=colour27, bg=black]⮀" | |
set-window-option -g window-status-format "#[fg=black, bg=colour12]⮀#[fg=colour255, bg=colour12] #I ⮁ #W #[fg=colour12, bg=black]⮀" | |
setw -g automatic-rename off | |
# Key bindings | |
bind \ split-window -h # Vertical split | |
bind | split-window -h # Vertical split | |
bind - split-window -v # Horizontal split | |
bind x kill-pane # Close current pane | |
bind a send-key C-a # Go to beginning of line | |
bind r source-file ~/.tmux.conf; display-message " ✓ reloaded .tmux.conf" # Reload configuration | |
# Switch between windows with arrow keys | |
bind -n S-Left previous-window | |
bind -n S-Right next-window | |
# Create new window with down | |
bind -n S-Down new-window | |
# 256 Colour terminal | |
set -g default-terminal "screen-256color" | |
# Buffer Size | |
set -g history-limit 5000 | |
# Mouse Support | |
set -g mouse-utf8 on | |
set -g mouse-select-pane | |
set -g mouse-select-window | |
set-option -g mouse-resize-pane on | |
bind-key -t vi-copy 'v' begin-selection | |
bind-key -t vi-copy 'y' copy-selection |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Had to modify a bit but thought you might like a couple things I have as well