-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.tmux.conf
34 lines (27 loc) · 973 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
set -g mouse on
set -g mode-keys vi
set -sg escape-time 20
# Fix neovim colors
set -ga terminal-overrides ",xterm-256color:Tc"
# Better leader key
set -g prefix C-s
# Move tmux status bar to the top
set-option -g status-position top
# Vim movement keys
bind-key h select-pane -L
bind-key j select-pane -D
bind-key k select-pane -U
bind-key l select-pane -R
# List of plugins
set -g @plugin 'tmux-plugins/tpm' # plugin manager
set -g @plugin 'tmux-plugins/tmux-sensible' # basic settings
set -g @plugin 'catppuccin/tmux' # catppuccino theme
# set -g @plugin 'christoomey/vim-tmux-navigator' # vim navigation
set -g @plugin 'jimeh/tmuxifier'
# Other examples:
# set -g @plugin 'github_username/plugin_name'
# set -g @plugin 'github_username/plugin_name#branch'
# set -g @plugin '[email protected]:user/plugin'
# set -g @plugin '[email protected]:user/plugin'
# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf)
run '~/.tmux/plugins/tpm/tpm'