dotfiles

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

commit 9aae7f45a42d6a6015e7b82e6af0779e8985bd4d
parent 6d726038404aae32d7a166da79700e16449bbc2c
Author: Lukas Joswiak <lukas@lukasjoswiak.com>
Date:   Mon,  8 Jul 2019 20:57:00 -0700

Add tmux config

Diffstat:
A.tmux.conf | 13+++++++++++++
MREADME.md | 5+++++
2 files changed, 18 insertions(+), 0 deletions(-)

diff --git a/.tmux.conf b/.tmux.conf @@ -0,0 +1,13 @@ +# Rebind prefix key to ctrl-a +unbind C-b +set -g prefix C-a +bind C-a send-prefix + +# Switch panes with hjkl +bind h select-pane -L +bind j select-pane -D +bind k select-pane -U +bind l select-pane -R + +# Enable mouse for scrolling and pane switching +set -g mouse on diff --git a/README.md b/README.md @@ -10,3 +10,8 @@ git clone git@github.com:LukasJoswiak/dotfiles.git ~/dotfiles ``` ln -s ~/dotfiles/.vimrc ~/.vimrc ``` + +## tmux +``` +ln -s ~/dotfiles/.tmux.conf ~/.tmux.conf +```