-
Notifications
You must be signed in to change notification settings - Fork 0
/
.tmux.conf
62 lines (50 loc) · 1.61 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
set -g history-limit 100000
set-option -g prefix C-w
unbind-key C-b
set -g default-command "$MY_SHELL"
# move x clipboard into tmux paste buffer
# bind C-y run "xclip -o | tmux load-buffer -"
# move tmux copy buffer into x clipboard
# bind C-w run "tmux save-buffer - | xclip -i -selection clipboard >/dev/null 2>&1"
# vim-like pane navigation
bind h select-pane -L
bind j select-pane -D
bind k select-pane -U
bind l select-pane -R
### Config for integration with Kakoune
# Disable text on right because it confuses me when it displays
# same lines as in Kakoune editor
set -g status-right ''
# No delay after pressing escape
set -sg escape-time 25
# Allow using FocusIn and FocusOut hooks
set-option -g focus-events on
# Allow to change color palette
set -g default-terminal "xterm-kitty"
# set -ga terminal-overrides ",alacritty:Tc"
### --- colors (solarized dark)
# default statusbar colors
set -g status-bg black
set -g status-fg brightblue
# set -g status-attr default
# default window title colors
# setw -g window-status-fg brightblue
# setw -g window-status-bg default
# active window title colors
# setw -g window-status-current-fg yellow
# setw -g window-status-current-bg default
# setw -g window-status-current-attr dim
# pane border
# set -g pane-border-fg black
# set -g pane-border-bg default
# set -g pane-active-border-fg yellow
# set -g pane-active-border-bg default
# command line/message text
# set -g message-bg black
# set -g message-fg yellow
# pane number display
# set -g display-panes-active-colour yellow
# set -g display-panes-colour brightblue
# clock
# setw -g clock-mode-colour yellow
### --- end colors