Skip to content

Instantly share code, notes, and snippets.

@njenan
Last active May 29, 2021 03:44
Show Gist options
  • Save njenan/582538c5bbf43d12223dfefeab0a6fc2 to your computer and use it in GitHub Desktop.
Save njenan/582538c5bbf43d12223dfefeab0a6fc2 to your computer and use it in GitHub Desktop.
.tmux.conf
# get 256 colors to work in tmux
set -g default-terminal "screen-256color"
# bind r to reload config file
bind r source-file ~/.tmux.conf \; display ​"Reloaded!"
# vim-like pane navigation
bind -T root C-h select-pane -L
bind -T root C-j select-pane -U
bind -T root C-k select-pane -D
bind -T root C-l select-pane -R
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment