Skip to content

Instantly share code, notes, and snippets.

# Set prefix command to Ctrl-a
set -g prefix C-a
unbind C-b
# Reduce tmux delay for more responsiveness
set -sg escape-time 1
# Window and pane index count starts in 1 rather tan 0
set -g base-index 1
setw -g pane-base-index 1
@while0pass
while0pass / addpath.sh
Created November 3, 2010 14:13 — forked from oblique63/addpath.sh
Adds new paths to the PATH environment variable
echo "PATH=\"$1:\$PATH\" && export PATH" >> ~/.profile
source ~/.profile