You've already forked dotfiles
fix: Updating the tmux configuration for clipboard management, removal
of the `tmux-sensible` plugin and cherry-picking of some settings from it.
This commit is contained in:
26
tmux.conf
26
tmux.conf
@@ -1,12 +1,33 @@
|
|||||||
# True color support
|
# True color support
|
||||||
set-option -g default-terminal 'tmux-256color'
|
set-option -ga terminal-overrides ',xterm-*:Tc'
|
||||||
set-option -ga terminal-overrides ',xterm-256color:Tc'
|
|
||||||
|
|
||||||
# Set encoding to Unicode8
|
# Set encoding to Unicode8
|
||||||
setw -gq utf8 on
|
setw -gq utf8 on
|
||||||
|
|
||||||
|
set -g status-interval 5
|
||||||
|
set -g display-time 4000
|
||||||
|
|
||||||
|
# Numbering changes
|
||||||
|
set -g base-index 1
|
||||||
|
set -g pane-base-index 1
|
||||||
|
set -g renumber-windows on
|
||||||
|
|
||||||
|
# History lengthening from the default 2k
|
||||||
|
set -g history-limit 50000
|
||||||
|
|
||||||
|
setw -g mode-keys vi
|
||||||
|
|
||||||
|
set -g focus-events on
|
||||||
|
|
||||||
|
# Window resizing on host shell size changes TODO: needs testing with pair coding
|
||||||
|
set -g window-size latest
|
||||||
|
setw -g aggressive-resize on
|
||||||
|
|
||||||
|
# set -g default-command 'reattach-to-user-namespace -l $SHELL' # TODO: Is this necessary for Mac still?
|
||||||
|
|
||||||
# Allow for external system clipboard
|
# Allow for external system clipboard
|
||||||
set-option -g set-clipboard external
|
set-option -g set-clipboard external
|
||||||
|
set-option -g allow-passthrough on
|
||||||
|
|
||||||
# Allow mouse interactions
|
# Allow mouse interactions
|
||||||
set -g mouse on
|
set -g mouse on
|
||||||
@@ -37,7 +58,6 @@ bind -n M-l next-window
|
|||||||
|
|
||||||
# Plugins
|
# Plugins
|
||||||
set -g @plugin 'tmux-plugins/tpm'
|
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-yank'
|
||||||
set -g @plugin 'egel/tmux-gruvbox'
|
set -g @plugin 'egel/tmux-gruvbox'
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user