Last active
January 28, 2025 15:55
-
-
Save BlurryFlurry/85939973187a93e81d7c 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
# use vi mode | |
setw -g mode-keys vi | |
# remap prefix to control + a | |
set -g prefix C-a | |
unbind C-b | |
bind C-a send-prefix | |
# move around panes like in vim | |
bind j select-pane -D | |
bind k select-pane -U | |
bind l select-pane -R | |
bind h select-pane -L | |
# Sane scrolling | |
# set -g mouse on | |
# ssh agent-forward | |
set-option -g update-environment "SSH_AUTH_SOCK" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment