-
Notifications
You must be signed in to change notification settings - Fork 0
/
.tmux.conf
87 lines (69 loc) · 2.36 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
set -g default-terminal "tmux-256color"
set -ag terminal-overrides ",xterm-256color:Tc,alacritty:RGB"
# Enable xterm-style key sequences and modifiers such as Ctrl, Alt and Shift.
set-window-option -g xterm-keys on
# Ring the bell if any background window rang a bell
set -g bell-action any
# command sequence C-a
unbind C-b
set-option -g prefix C-a
# Disable the mouse
setw -g mouse off
# Statusbar top
set-option -g status-position top
# Set window notifications.
setw -g monitor-activity on
set -g visual-activity on
# Start Window Numbering at 1
set -g base-index 1
# Numbering of panes
set -g pane-base-index 1
# Re-number the windows when one is closed
set -g renumber-windows on
# Terminal emulator window titles
set -g set-titles on
set -g set-titles-string '#S'
set -g @yank_selection 'clipboard'
# Can I colorize the tree directory listing in the sidebar?
set -g @sidebar-tree-command 'tree -C'
# jabirali/tmux-tilish
# https://github.com/jabirali/tmux-tilish#navigate
set -g @tilish-navigate 'on'
set -g @tilish-default 'main-horizontal'
# sunaku/tmux-navigate
# https://github.com/sunaku/tmux-navigate#installation
# DVORAK layout
set -g @navigate-back '-n M-d'
set -g @navigate-left '-n M-h'
set -g @navigate-up '-n M-t'
set -g @navigate-down '-n M-n'
set -g @navigate-right '-n M-s'
set -g @tmux_window_name_shells "['zsh', 'bash', 'sh', '/usr/bin/python', 'ntfy']"
set -g @tmux_window_dir_programs "['nvim', 'vim', 'vi', 'git']"
set -g @tmux_window_name_use_tilde "True"
set -g @thumbs-key F
set -g @thumbs-alphabet dvorak
# o0th/tmux-nova
set -g @nova-nerdfonts true
set -g @nova-nerdfonts-left
set -g @nova-nerdfonts-right
set -g @nova-segment-mode "#{?client_prefix,Ω,ω}"
set -g @nova-segment-mode-colors "#50fa7b #282a36"
set -g @nova-segments-0-left "mode"
set -g @tpm_plugins '\
tmux-plugins/tpm \
tmux-plugins/tmux-prefix-highlight \
tmux-plugins/tmux-sensible \
jabirali/tmux-tilish \
sunaku/tmux-navigate \
tmux-plugins/tmux-pain-control \
tmux-plugins/tmux-resurrect \
tmux-plugins/tmux-sessionist \
tmux-plugins/tmux-yank \
fcsonline/tmux-thumbs \
ofirgall/tmux-window-name \
o0th/tmux-nova \
'
# Initializes TMUX plugin manager.
# Keep this line at the very bottom of tmux.conf.
run-shell '~/.tmux/plugins/tpm/tpm'