tmux.conf (848B)
1 # SPDX-License-Identifier: GPL-3.0-or-later
2 # SPDX-FileCopyrightText: 2023-2024 JayVii <jayvii[AT]posteo[DOT]de>
3
4 # Options to enable mouse support in Tmux
5 #set -g terminal-overrides 'xterm*:smcup@:rmcup@'
6 # For Tmux >= 2.1
7 set -g mouse on
8
9 # Escape time for libtermkey
10 # (see https://github.com/neovim/neovim/issues/2035):
11 set -sg escape-time 0
12
13 # Set history limits
14 set -g history-limit 2000
15
16 # split-controls (shift+arrow)
17 bind -n C-left select-pane -L
18 bind -n C-down select-pane -D
19 bind -n C-up select-pane -U
20 bind -n C-right select-pane -R
21 bind -n C-h split-window -v -c '#{pane_current_path}'
22 bind -n C-v split-window -h -c '#{pane_current_path}'
23
24 # Color-support
25 #set -g default-terminal "screen-256color"
26 set -g default-terminal "xterm-256color"
27 set-option -sa terminal-overrides ",xterm*:Tc"
28
29 # Do not show any TMUX UI
30 set -g status off
31
32