Skip to content

Instantly share code, notes, and snippets.

@FLX-0x00
Created November 16, 2017 17:34
Show Gist options
  • Save FLX-0x00/aa92c5a82f8f867fd8b9860006bdd08a to your computer and use it in GitHub Desktop.
Save FLX-0x00/aa92c5a82f8f867fd8b9860006bdd08a to your computer and use it in GitHub Desktop.
Simple & Custom TMUX config
setw -g mouse on
bind -n WheelUpPane select-pane -t= \; copy-mode -e \; send-keys -M
bind -n WheelDownPane select-pane -t= \; send-keys -M
bind -n C-WheelUpPane select-pane -t= \; copy-mode -e \; send-keys -M
set -g history-limit 30000
set -g set-titles on
set -g set-titles-string "#T"
# Set prefix to Ctrl-Space
unbind C-b
set -g prefix C-Space
bind Space send-prefix
# split panes using | and -
bind + split-window -h
bind - split-window -v
unbind '"'
unbind %
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment