Created
November 8, 2015 07:19
-
-
Save arbaaz/1615ced54f86a44d83e7 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
unbind C-b | |
set -g prefix C-s | |
bind-key -r C-s send-prefix | |
bind-key r source-file ~/.tmux.conf \; display-message "~/.tmux.conf reloaded" | |
# Smart pane switching with awareness of vim splits | |
# See: https://github.com/christoomey/vim-tmux-navigator | |
is_vim='echo "#{pane_current_command}" | grep -iqE "(^|\/)g?(view|n?vim?)(diff)?$"' | |
bind -n C-h if-shell "$is_vim" "send-keys C-h" "select-pane -L" | |
bind -n C-j if-shell "$is_vim" "send-keys C-j" "select-pane -D" | |
bind -n C-k if-shell "$is_vim" "send-keys C-k" "select-pane -U" | |
bind -n C-l if-shell "$is_vim" "send-keys C-l" "select-pane -R" | |
bind -n C-\ if-shell "$is_vim" "send-keys C-\\" "select-pane -l" | |
# Use Alt-arrow keys without prefix key to switch panes | |
bind -n M-Left select-pane -L | |
bind -n M-Right select-pane -R | |
bind -n M-Up select-pane -U | |
bind -n M-Down select-pane -D | |
bind C-l send-keys 'C-l' | |
bind C-k send-keys 'C-k' | |
set-option -g default-terminal "screen-256color" | |
set-option -g status-keys "emacs" | |
set-option -g utf8 on | |
set-option -g status-left-length 50 | |
set-option -g status-right " #(is-online) #(date '+%a, %b %d - %I:%M')" | |
bind-key - split-window -v -c '#{pane_current_path}' | |
bind-key / split-window -h -c '#{pane_current_path}' | |
bind -n S-Left resize-pane -L 2 | |
bind -n S-Right resize-pane -R 2 | |
bind -n S-Down resize-pane -D 1 | |
bind -n S-Up resize-pane -U 1 | |
bind -n C-Left resize-pane -L 10 | |
bind -n C-Right resize-pane -R 10 | |
bind -n C-Down resize-pane -D 5 | |
bind -n C-Up resize-pane -U 5 | |
bind c new-window -c '#{pane_current_path}' | |
set-option -g base-index 1 | |
set-option -g renumber-windows on | |
bind-key b break-pane -d | |
bind-key C-j choose-tree | |
# Use vim keybindings in copy mode | |
setw -g mode-keys vi | |
# Setup 'v' to begin selection as in Vim | |
bind-key -t vi-copy v begin-selection | |
bind-key -t vi-copy y copy-pipe "reattach-to-user-namespace pbcopy" | |
# Update default binding of `Enter` to also use copy-pipe | |
unbind -t vi-copy Enter | |
bind-key -t vi-copy Enter copy-pipe "reattach-to-user-namespace pbcopy" | |
bind-key h split-window -h "htop" | |
bind-key t split-window -h -c ~/ "vim todo.md" | |
bind C-j split-window -v "tmux list-sessions | sed -E 's/:.*$//' | grep -v \"^$(tmux display-message -p '#S')\$\" | fzf --reverse | xargs tmux switch-client -t" | |
# Prompted join-pane | |
bind-key j command-prompt -p "join pane from: " "join-pane -h -s '%%'" | |
bind-key w command-prompt -p "move window to: " "move-window -t '%%'" | |
bind-key p command-prompt -p "move pane to: " "move-pane -t '%%'" | |
#Easily swap a pane (targeted by pane number) with the current pane | |
bind-key s display-panes\; command-prompt -p "pane #: " "swap-pane -t '%%'" | |
bind-key C-b send-keys 'tat && exit' 'C-m' | |
bind-key K run-shell 'tmux switch-client -n \; kill-session -t "$(tmux display-message -p "#S")" || tmux kill-session' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment