From e1a79caa866e1f946cc55ab202616d75dbcf86a8 Mon Sep 17 00:00:00 2001 From: Gea-Suan Lin Date: Mon, 2 Jul 2012 11:04:17 +0800 Subject: [PATCH] Add tmux alias --- .bashrc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.bashrc b/.bashrc index b171171..bf331d2 100644 --- a/.bashrc +++ b/.bashrc @@ -45,9 +45,11 @@ shopt -s histappend # if [ "`uname -s`" == "FreeBSD" -o "`uname -s`" == "Darwin" ]; then alias ls="/bin/ls -aFG" + alias tmux="TERM=xterm-256color /usr/local/bin/tmux" alias w="/usr/bin/w -i" elif [ "`uname -s`" == "Linux" ]; then alias ls="/bin/ls -aF --color=always" + alias tmux="TERM=screen-256color /usr/bin/tmux" else alias ls="/bin/ls -aF" fi