Skip to content

Instantly share code, notes, and snippets.

View ccaspers's full-sized avatar

Christian Caspers ccaspers

View GitHub Profile
@ccaspers
ccaspers / tmux_local_install.sh
Last active July 11, 2016 16:28 — forked from ryin/tmux_local_install.sh
bash script for installing tmux without root access
#!/bin/bash
# Script for installing tmux on systems where you don't have root access.
# tmux will be installed in $APP_DIR/bin.
# It's assumed that wget and a C/C++ compiler are installed.
# exit on error
set -e
TMUX_VERSION=2.2
@ccaspers
ccaspers / tmux-cheatsheet.markdown
Created January 23, 2016 15:22 — forked from MohamedAlaa/tmux-cheatsheet.markdown
tmux shortcuts & cheatsheet

tmux shortcuts & cheatsheet

start new:

tmux

start new with session name:

tmux new -s myname
@ccaspers
ccaspers / tmux.md
Last active August 29, 2015 14:27 — forked from andreyvit/tmux.md
tmux cheatsheet

tmux cheat sheet

(C-x means ctrl+x, M-x means alt+x)

Prefix key

The default prefix is C-b. If you (or your muscle memory) prefer C-a, you need to add this to ~/.tmux.conf:

remap prefix to Control + a