-
Notifications
You must be signed in to change notification settings - Fork 2
/
tmux.conf
38 lines (26 loc) · 869 Bytes
/
tmux.conf
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
37
38
# Allow mouse
# set -g mouse on
# Scroll with mousewheel
set -g terminal-overrides 'xterm*:smcup@:rmcup@'
# TERM
set -g default-terminal "tmux-256color"
# 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-right ""
set -g status-left ""
# Update env vars
set-option -g update-environment "GPG_AGENT_INFO SSH_AGENT_PID SSH_ASK_PASS SSH_CONNECTION WINDOWID XAUTHORITY DISPLAY"
setenv -g SSH_AUTH_SOCK $HOME/.ssh/ssh_auth_sock
# Set solarized colors
source-file ~/.dotfiles/tmux.d/solarized.conf
# Direnv stuff
source-file ~/.dotfiles/tmux.d/direnv.conf
# sensible.tmux
run-shell ~/.dotfiles/tmux.d/sensible.tmux