-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.tmux.conf
46 lines (36 loc) · 1.14 KB
/
.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
39
40
41
42
43
44
45
46
# Create a default session on server start
new-session
#set-option -g default-command "reattach-to-user-namespace -l zsh"
# Prefix key
set -g prefix C-a
unbind C-b
bind C-a send-prefix
# # Keys
bind k confirm kill-window
# #Change key bindings so that pressing the arrow key changes pane exactly one time
bind-key Up select-pane -U
bind-key Down select-pane -D
bind-key Left select-pane -L
bind-key Right select-pane -R
# # Options
set -g bell-action none
set -g set-titles on
set -g set-titles-string "tmux (#I:#W)"
set -g base-index 1
set -g status-left "#[bold]"
set -g status-right "tmux"
set -g pane-active-border-style fg=black,bg=black
# # Make it so the split window commands open in current directory
bind '"' split-window -c "#{pane_current_path}"
bind % split-window -h -c "#{pane_current_path}"
#bind c new-window -h -c "#{pane_current_path}"
# set -g default-terminal "screen-256color"
# Window options
setw -g monitor-activity off
setw -g automatic-rename off
# Colors
setw -g window-status-current-style fg=colour191
set -g status-style fg=white,bg=default
set -g message-style fg=colour191,bg=default
# Display
set -g status off