The installation instructions are coming soon...
-
First install Homebrew
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
-
Next, install the
tmux
andreattach-to-user-namespace
packages using Homebrewbrew install tmux brew install reattach-to-user-namespace
-
Create a symbolic link to
dotfiles/tmux/tmux.conf
ln -s /path/to/repo/dotfiles/tmux/tmux.conf ~/.tmux.conf
-
-
Open
~/.tmux.conf
in your favourite editor and edit theMYSHELL
andMYSHELL_PATH
variables in the file which defaults tofish
... 3 # SHELL choice (zsh | fish) 4 MYSHELL=zsh 5 MYSHELL_PATH=/usr/local/bin/zsh ...
-
-
Run tmux
~$ tmux
-
Install the
xsel
andtmux
packagessudo apt-get install xsel tmux
-
Create a symbolic link to
dotfiles/tmux/tmux.ubuntu.conf
ln -s /path/to/repo/dotfiles/tmux/tmux.ubuntu.conf ~/.tmux.conf
-
-
Open
~/.tmux.conf
in your favourite editor and edit theMYSHELL
andMYSHELL_PATH
variables in the file which defaults tofish
... 3 # SHELL choice (zsh | fish) 4 MYSHELL=zsh 5 MYSHELL_PATH=/usr/bin/zsh ...
-
-
Run tmux
~$ tmux
-
-
If you get an error regarding
ambiguous option: mouse
edit your~/.tmux.conf
and change theset -g mouse on
to this# set -g mouse on
-
- Install zsh
brew install zsh
orsudo apt-get install zsh
based on your platform. - Install Oh My Zsh!.
- To be updated