We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f69056b commit ab5ae03Copy full SHA for ab5ae03
1 file changed
backend/containers/tmux.conf
@@ -1,5 +1,8 @@
1
# tmux configuration for learning
2
-# Using Ctrl-b as prefix (default)
+# Using Ctrl-a as prefix (easier to reach than Ctrl-b)
3
+unbind C-b
4
+set -g prefix C-a
5
+bind C-a send-prefix
6
7
# Enable mouse support (good for beginners)
8
set -g mouse on
@@ -39,7 +42,9 @@ bind l select-pane -R
39
42
40
43
# Easier splits (more intuitive)
41
44
bind | split-window -h -c "#{pane_current_path}"
45
+bind \\ split-window -h -c "#{pane_current_path}"
46
bind - split-window -v -c "#{pane_current_path}"
47
+bind _ split-window -v -c "#{pane_current_path}"
48
49
# Reload config
50
bind r source-file ~/.tmux.conf \; display "Config reloaded!"
0 commit comments