summaryrefslogtreecommitdiff
path: root/tmux/tmux.md
diff options
context:
space:
mode:
authorStefan Wölfert2024-11-26 18:30:43 +0100
committerStefan Wölfert2024-11-26 18:30:43 +0100
commitfb9a7038a8db728ef34a799516bd33cf9ef17a11 (patch)
treee46f59de65d644944bf12469f094b14dcb01e37f /tmux/tmux.md
parentb44146ab9233d4e383780786ddc355e106bed2fb (diff)
[tmux] basic tmux.conf fileHEADmain
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
+```