Skip to content

Instantly share code, notes, and snippets.

@nihil0
Created January 17, 2016 16:44
Show Gist options
  • Save nihil0/46c22138f1449eeed9fd to your computer and use it in GitHub Desktop.
Save nihil0/46c22138f1449eeed9fd to your computer and use it in GitHub Desktop.
TMUX config
# Setting the prefix from `C-b` to `C-a`.
# By remapping the `CapsLock` key to `Ctrl`,
# you can make triggering commands more comfottable!
set -g prefix C-a
# Free the original `Ctrl-b` prefix keybinding.
unbind C-b
# Ensure that we can send `Ctrl-a` to other apps.
bind C-a send-prefix
# Set the default terminal mode to 256color mode.
set -g default-terminal "screen-256color"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment