summaryrefslogtreecommitdiff
path: root/.tmux
diff options
context:
space:
mode:
authorUrbain Vaes <urbain@vaes.uk>2015-09-16 16:08:19 +0100
committerUrbain Vaes <urbain@vaes.uk>2015-09-16 16:08:19 +0100
commit64ea5975e6e63cb54b2abf54d5c3ad661280e823 (patch)
tree1718cd2594673198a36ce6709cbd7ce474f2c69a /.tmux
parent5dd7aa0ee9bc2f5eb8c09c996aee25519c628bb0 (diff)
Add tmux-plugin-manager as submodule
Diffstat (limited to '.tmux')
-rw-r--r--.tmux/Makefile14
-rw-r--r--.tmux/tmux.conf42
m---------.tmux/tpm0
3 files changed, 56 insertions, 0 deletions
diff --git a/.tmux/Makefile b/.tmux/Makefile
new file mode 100644
index 0000000..bb4db43
--- /dev/null
+++ b/.tmux/Makefile
@@ -0,0 +1,14 @@
+HOME=/home/urbain
+TARGETS=$(addprefix $(HOME)/,.tmux.conf .tmux/plugins/tpm)
+
+all : $(TARGETS)
+
+$(HOME)/.tmux.conf :
+ rm -f $@ && ln -s $(PWD)/tmux.conf $@
+
+$(HOME)/.tmux/plugins/tpm :
+ mkdir -p $(HOME)/.tmux/plugins
+ rm -f $@ && ln -s $(PWD)/tpm $@
+
+clean :
+ rm -f $(TARGETS)
diff --git a/.tmux/tmux.conf b/.tmux/tmux.conf
new file mode 100644
index 0000000..989a487
--- /dev/null
+++ b/.tmux/tmux.conf
@@ -0,0 +1,42 @@
+# set -g default-terminal "screen-256color"
+set -g default-terminal screen
+if "[[ ${TERM} =~ 256color || ${TERM} == fbterm ]]" 'set -g default-terminal screen-256color'
+
+set -g mode-mouse on
+set -g mouse-resize-pane on
+set -g mouse-select-pane on
+
+unbind C-b
+set -g prefix C-s
+bind s send-prefix
+
+unbind r
+bind r source-file ~/.tmux.conf
+
+set -s escape-time 0
+set-option -g allow-rename off
+
+set -g @tpm_plugins ' \
+ tmux-plugins/tpm \
+ tmux-plugins/tmux-sensible \
+ tmux-plugins/tmux-resurrect \
+'
+
+set -g @resurrect-strategy-vim 'session'
+set -g @resurrect-save 'S'
+set -g @resurrect-restore 'R'
+set -g status off
+
+is_vim='echo "#{pane_current_command}" | grep -iqE "(^|\/)g?(view|n?vim?)(diff)?$"'
+bind -n C-h if-shell "$is_vim" "send-keys C-h" "select-pane -L"
+bind -n C-j if-shell "$is_vim" "send-keys C-j" "select-pane -D"
+bind -n C-k if-shell "$is_vim" "send-keys C-k" "select-pane -U"
+bind -n C-l if-shell "$is_vim" "send-keys C-l" "select-pane -R"
+
+bind C-n next-window
+bind C-p previous-window
+
+bind-key -n C-S-Left swap-window -t -1
+bind-key -n C-S-Right swap-window -t +1
+
+run-shell '~/.tmux/plugins/tpm/tpm'
diff --git a/.tmux/tpm b/.tmux/tpm
new file mode 160000
+Subproject 5de37f98bb89cd67901c76a34ad084bb4e35b0b