Created
April 13, 2019 12:49
-
-
Save WMahoney09/a30f1efcb41bdedc341cb4b1d705f678 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
# remap prefix from 'C-b' to 'C-a' | |
unbind C-b | |
set-option -g prefix C-a | |
bind-key C-a send-prefix | |
# split panes using | and - | |
bind | split-window -h -c '#{pane_current_path}' | |
bind - split-window -v -c '#{pane_current_path}' | |
unbind '"' | |
unbind % | |
# switch panes using C-HJKL | |
bind h select-pane -L | |
bind l select-pane -R | |
bind j select-pane -D | |
bind k select-pane -U | |
# enable mouse for scroll and pane selection/manipulation | |
set -g mouse on | |
bind v set-window-option mouse | |
# colors? | |
#set -g default-terminal "screen-256color" | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment