Created
March 3, 2021 06:12
-
-
Save ukitazume/f2eb801ab4d8ae9c3782d7175dbd82a6 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
set -g default-terminal "screen-256color" | |
set-option -g default-shell /bin/zsh | |
# act like vim | |
setw -g mode-keys vi | |
set -g base-index 1 | |
set -g history-limit 10000 | |
bind-key C-a last-pane | |
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 :+ | |
bind-key -r C-t select-pane -t :.+ | |
# act like GNU screen | |
unbind C-b | |
set -g prefix C-t | |
set-option -sg escape-time 10 | |
#set-option -g mouse on | |
# Vim PowerLine | |
#source ~/.vim/bundle/powerline/bindings/tmux/powerline.conf' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment