-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtmux.conf
More file actions
36 lines (25 loc) · 779 Bytes
/
tmux.conf
File metadata and controls
36 lines (25 loc) · 779 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# Allow mouse
set -g mouse on
# Scroll with mousewheel
set -g terminal-overrides 'xterm*:smcup@:rmcup@'
# Fix colors
set-option -ga terminal-overrides ",xterm-256color:Tc"
# Start windows numbering at 1
set -g base-index 1
# Make pane numbering consistent with windows
setw -g pane-base-index 1
# Rename window to reflect current program
setw -g automatic-rename on
# Renumber windows when a window is closed
set -g renumber-windows on
# Disable status bars
set -g status-left ""
# set -g status-right ""
# Set solarized colors
source-file ~/.dotfiles/tmux.d/solarized.conf
# Direnv stuff
source-file ~/.dotfiles/tmux.d/direnv.conf
# Sensible defaults
source-file ~/.dotfiles/tmux.d/sensible.conf
# Override pane border colors
set -g pane-active-border-style fg=green