summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--Makefile4
-rw-r--r--tmux.conf23
2 files changed, 2 insertions, 25 deletions
diff --git a/Makefile b/Makefile
index c2b42f8..376003b 100644
--- a/Makefile
+++ b/Makefile
@@ -6,8 +6,8 @@ INSTALL = \
 	bashrc \
 	emacs.d \
 	gitconfig \
-	gitignore \
-	tmux.conf
+	gitignore
+
 
 INSTALLED = $(patsubst %,$(INTO)/.%,$(INSTALL))
 LN        = @ln -sf
diff --git a/tmux.conf b/tmux.conf
deleted file mode 100644
index 1c950a6..0000000
--- a/tmux.conf
+++ /dev/null
@@ -1,23 +0,0 @@
-# Prefix
-set-option -g prefix C-z
-unbind-key C-b
-bind C-t send-prefix
-
-# show the status
-set -g status on
-
-# split window
-bind _ split-window -v -c "#{pane_current_path}"
-bind | split-window -h -c "#{pane_current_path}"
-
-# Option
-set-window-option -g mode-keys vi
-
-# renumber window
-set-option -g renumber-windows on
-
-# rename the window
-set-option -g allow-rename on
-
-# start at 1
-set-option -g base-index 1