Skip to content

Instantly share code, notes, and snippets.

@Akahadaka
Created December 19, 2017 17:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Akahadaka/3337757a22bc4c3c0cf3a780124b53f4 to your computer and use it in GitHub Desktop.
Save Akahadaka/3337757a22bc4c3c0cf3a780124b53f4 to your computer and use it in GitHub Desktop.
# Make mouse useful in copy mode
set -g mouse on
# Allow mouse to select which pane to use
#set -g mouse-select-pane on
# Allow mouse dragging to resize panes
#set -g mouse-resize-pane on
# Allow mouse to select windows
#set -g mouse-select-window on
# Allow xterm titles in terminal window, terminal scrolling with scrollbar, and setting overrides of C-Up, C-Down, C-Left, C-Right
# (commented out because it disables cursor navigation in vim)
#set -g terminal-overrides "xterm*:XT:smcup@:rmcup@:kUP5=\eOA:kDN5=\eOB:kLFT5=\eOD:kRIT5=\eOC"
# Scroll History
set -g history-limit 30000
# Set ability to capture on start and restore on exit window data when running an application
setw -g alternate-screen on
# Lower escape timing from 500ms to 50ms for quicker response to scroll-buffer access.
set -s escape-time 50
# Set ZSH as default shell
set -g default-shell /usr/local/bin/zsh
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment