summaryrefslogtreecommitdiff
path: root/dots/tmux/.config
diff options
context:
space:
mode:
Diffstat (limited to 'dots/tmux/.config')
-rw-r--r--dots/tmux/.config/tmux/tmux.conf28
1 files changed, 28 insertions, 0 deletions
diff --git a/dots/tmux/.config/tmux/tmux.conf b/dots/tmux/.config/tmux/tmux.conf
new file mode 100644
index 0000000..d5bc17c
--- /dev/null
+++ b/dots/tmux/.config/tmux/tmux.conf
@@ -0,0 +1,28 @@
+#-- <keybinds> --
+set -g prefix C-s
+
+set-window-option mode-keys vi
+
+unbind r
+bind r source-file ~/.config/tmux/tmux.conf
+
+bind-key h select-pane -L
+bind-key j select-pane -D
+bind-key k select-pane -U
+bind-key l select-pane -R
+#-- </keybinds> --
+
+#-- <plugins> --
+set -g @plugin 'tmux-plugins/tpm'
+set -g @plugin 'tmux-plugins/tmux-sensible'
+#-- </plugins> --
+
+#-- <theme> --
+set -g @plugin 'egel/tmux-gruvbox'
+set -g @tmux-gruvbox 'dark'
+#-- </theme> --
+
+#-- <tpm> --
+# keep at bottom
+run '~/.tmux/plugins/tpm/tpm'
+#-- </tpm> --