summaryrefslogtreecommitdiff
path: root/.config/tmux
diff options
context:
space:
mode:
Diffstat (limited to '.config/tmux')
m---------.config/tmux/plugins/nord-tmux0
m---------.config/tmux/plugins/tmux-continuum0
m---------.config/tmux/plugins/tmux-resurrect0
m---------.config/tmux/plugins/tmux-sensible0
m---------.config/tmux/plugins/tpm0
-rw-r--r--.config/tmux/tmux.conf21
6 files changed, 21 insertions, 0 deletions
diff --git a/.config/tmux/plugins/nord-tmux b/.config/tmux/plugins/nord-tmux
new file mode 160000
+Subproject f7b6da07ab55fe32ee5f7d62da56d8e5ac691a9
diff --git a/.config/tmux/plugins/tmux-continuum b/.config/tmux/plugins/tmux-continuum
new file mode 160000
+Subproject 0698e8f4b17d6454c71bf5212895ec055c578da
diff --git a/.config/tmux/plugins/tmux-resurrect b/.config/tmux/plugins/tmux-resurrect
new file mode 160000
+Subproject cff343cf9e81983d3da0c8562b01616f12e8d54
diff --git a/.config/tmux/plugins/tmux-sensible b/.config/tmux/plugins/tmux-sensible
new file mode 160000
+Subproject 25cb91f42d020f675bb0a2ce3fbd3a5d96119ef
diff --git a/.config/tmux/plugins/tpm b/.config/tmux/plugins/tpm
new file mode 160000
+Subproject 99469c4a9b1ccf77fade25842dc7bafbc8ce994
diff --git a/.config/tmux/tmux.conf b/.config/tmux/tmux.conf
new file mode 100644
index 0000000..c9204ce
--- /dev/null
+++ b/.config/tmux/tmux.conf
@@ -0,0 +1,21 @@
+set -g default-terminal "tmux-256color"
+set -g history-limit 10000
+
+# Change to ctrl^A
+unbind C-b
+set -g prefix C-a
+bind C-a send-prefix
+# Reload shortcut
+bind r source-file ~/.config/tmux/tmux.conf
+
+# List of plugins
+set -g @plugin 'tmux-plugins/tpm'
+set -g @plugin 'tmux-plugins/tmux-sensible'
+set -g @plugin 'arcticicestudio/nord-tmux'
+
+set -g @plugin 'tmux-plugins/tmux-resurrect'
+set -g @plugin 'tmux-plugins/tmux-continuum'
+set -g @continuum-restore 'on'
+
+# Initialize TMUX plugin manager (Keep this line at the very bottom of tmux.conf)
+run '~/.local/share/tmux/plugins/tpm/tpm'