diff options
-rw-r--r-- | Makefile | 5 | ||||
-rw-r--r-- | tmux.conf | 17 |
2 files changed, 20 insertions, 2 deletions
diff --git a/Makefile b/Makefile index 7e44a5e..39748df 100644 --- a/Makefile +++ b/Makefile @@ -8,7 +8,8 @@ INSTALL = \ ctags \ emacs.d \ gitconfig \ - gitignore + gitignore \ + tmux.conf INSTALLED = $(patsubst %,$(INTO)/.%,$(INSTALL)) @@ -24,7 +25,7 @@ $(HOME)/.ssh/authorized_keys: $(HOME)/workspace: @mkdir -p $(HOME)/workspace/ -$(HOME)/GDrive/screenshots: +$(HOME)/Documents/screenshots: @mkdir -p $(HOME)/GDrive/screenshots .PHONE: osx diff --git a/tmux.conf b/tmux.conf new file mode 100644 index 0000000..3c1a0ce --- /dev/null +++ b/tmux.conf @@ -0,0 +1,17 @@ +set-option -g prefix C-z +bind-key a send-prefix + +set-option -g base-index 1 +set-option -g renumber-windows on +set-option -g set-titles on +set-option -g set-titles-string '@#h' + +set -g history-limit 20000 + +set -g set-titles on +set -g set-titles-string "#T" + +set-option -g default-terminal "xterm-256color" +set-option -g xterm-keys on + +set-option -g mouse on |