Skip to content

Instantly share code, notes, and snippets.

@TaylorJadin
Last active March 9, 2021 01:17
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 TaylorJadin/7b35d66f442d48a859cb6aa825f8ce22 to your computer and use it in GitHub Desktop.
Save TaylorJadin/7b35d66f442d48a859cb6aa825f8ce22 to your computer and use it in GitHub Desktop.
# Use zsh
set-option -g default-shell /usr/bin/zsh
# remap prefix from 'C-b' to 'C-z'
unbind C-b
set-option -g prefix C-z
bind-key C-z send-prefix
# split panes using \ and -
bind \\ split-window -h
bind - split-window -v
unbind '"'
unbind %
# reload config file (change file location to your the tmux.conf you w
ant to use)
bind r source-file ~/.tmux.conf
# Enable mouse mode (tmux 2.1 and above)
set -g mouse on
# Color
set -g default-terminal "screen-256color"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment