-
Notifications
You must be signed in to change notification settings - Fork 0
/
tmux.conf
39 lines (31 loc) · 1.1 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
# Fix Colours
set-option -sa terminal-overrides ",xterm*:Tc"
# Reset Prefix
unbind C-b
set -g prefix C-Space
bind C-Space send-prefix
# Mouse Support
set -g mouse on
# Retain current directory for pane splits
bind '"' split-window -v -c "#{pane_current_path}"
bind % split-window -h -c "#{pane_current_path}"
# Shift Alt vim keys to switch windows
bind -n M-H previous-window
bind -n M-L next-window
# 1-index (versus 0-index) windows, it doesn't make sense to 0-index windows
set -g base-index 1
set -g pane-base-index 1
set-window-option -g pane-base-index 1
set-option -g renumber-windows on
# List of plugins
set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'tmux-plugins/tmux-sensible'
set -g @plugin 'christoomey/vim-tmux-navigator'
set -g @plugin 'dreamsofcode-io/catppuccin-tmux'
# Other examples:
# set -g @plugin 'github_username/plugin_name'
# set -g @plugin 'github_username/plugin_name#branch'
# set -g @plugin 'git@github.com:user/plugin'
# set -g @plugin 'git@bitbucket.com:user/plugin'
# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf)
run '~/.tmux/plugins/tpm/tpm'