summaryrefslogtreecommitdiff
path: root/tmux/tmux.md
diff options
context:
space:
mode:
Diffstat (limited to 'tmux/tmux.md')
-rw-r--r--tmux/tmux.md14
1 files changed, 14 insertions, 0 deletions
diff --git a/tmux/tmux.md b/tmux/tmux.md
new file mode 100644
index 0000000..e560773
--- /dev/null
+++ b/tmux/tmux.md
@@ -0,0 +1,14 @@
+# TMUX
+
+basic `tmux.conf`:
+```
+unbind C-b
+set-option -g prefix C-y
+bind-key C-y send-prefix
+
+set -g base-index 1
+set -g status on
+set -g history-limit 500000
+
+bind-key S set synchronize-panes
+```