mirror of
https://github.com/gyoder/dots.git
synced 2026-02-27 17:03:45 +00:00
24 lines
513 B
Bash
24 lines
513 B
Bash
# 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'
|