add tmux config
This commit is contained in:
parent
2c894e643c
commit
57cc17ff65
1 changed files with 27 additions and 0 deletions
27
.config/tmux/tmux.conf
Normal file
27
.config/tmux/tmux.conf
Normal file
|
@ -0,0 +1,27 @@
|
|||
set-option -sa terminal-overrides ",xterm*:Tc"
|
||||
set -g mouse on
|
||||
|
||||
unbind C-b
|
||||
set -g prefix C-Space
|
||||
bind C-Space send-prefix
|
||||
|
||||
# Start windows and panes at 1, not 0
|
||||
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
|
||||
|
||||
# Plugins
|
||||
set -g @plugin 'tmux-plugins/tpm'
|
||||
set -g @plugin 'tmux-plugins/tmux-sensible'
|
||||
set -g @plugin 'tmux-plugins/tmux-yank'
|
||||
set -g @plugin 'tmux-plugins/tmux-resurrect'
|
||||
set -g @plugin 'christoomey/vim-tmux-navigator'
|
||||
|
||||
set -g @plugin 'catppuccin/tmux'
|
||||
|
||||
run '~/.tmux/plugins/tpm/tpm'
|
||||
|
||||
# keybindings
|
||||
#bind "-" split-window -v -c "#{pane_current_path}"
|
||||
#bind "\" split-window -h -c "#{pane_current_path}"
|
Loading…
Reference in a new issue