Last active
February 4, 2019 23:49
-
-
Save gabrieljoelc/7c626b801ddf4f5744e0f7c15388345d to your computer and use it in GitHub Desktop.
WSL Debian 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
# GistID: 7c626b801ddf4f5744e0f7c15388345d | |
# see https://sanctum.geek.nz/arabesque/vi-mode-in-tmux/ | |
set-window-option -g mode-keys vi | |
# https://www.johnhawthorn.com/2012/09/vi-escape-delays/ | |
set -s escape-time 0 | |
# https://unix.stackexchange.com/a/35932/275026 | |
# Start windows and panes at 1, not 0 | |
set -g base-index 1 | |
setw -g pane-base-index 1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment