tmux: initial tmux config

This commit is contained in:
gyoder 2025-06-24 14:33:46 -06:00
parent bbae1a6f59
commit 7ff818b3f1
2 changed files with 26 additions and 1 deletions

24
tmux/.tmux.conf Normal file
View file

@ -0,0 +1,24 @@
# Options
set -g mouse on
set -g default-terminal "screen-256color"
set-option -sa terminal-overrides ',xterm-256color:Tc'
set-window-option -g mode-keys vi
set -g status-position top
set-option -g set-clipboard on
set -g @yank_action "copy-pipe"
# Keybinds
set-option -g prefix C-\\
unbind C-b
bind C-\\ send-prefix
bind r source-file ~/.tmux.conf
# Plugins
set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'tmux-plugins/tmux-sensible'
set -g @plugin 'tmux-plugins/tmux-yank'
run '~/.tmux/plugins/tpm/tpm'