Minor tmux config changes
This commit is contained in:
parent
6ec06ee1d2
commit
2f1b35ce5c
4 changed files with 16 additions and 14 deletions
|
|
@ -8,34 +8,35 @@ set -as terminal-overrides ",xterm*:Tc"
|
|||
# Get rid of nvim escape delay
|
||||
set -s escape-time 0
|
||||
|
||||
# Enable vim mode in visual
|
||||
setw -g mode-keys vi
|
||||
|
||||
|
||||
# enable activity alerts
|
||||
setw -g monitor-activity on
|
||||
set -g visual-activity on
|
||||
|
||||
# Center the window list ? idk what this does
|
||||
# set -g status-justify centre
|
||||
|
||||
# Start with window 1 (instead of 0)
|
||||
set -g base-index 1
|
||||
|
||||
# Start with pane 1
|
||||
setw -g pane-base-index 1
|
||||
|
||||
# Reload config on C-r
|
||||
bind C-r source-file ~/.config/tmux/tmux.conf
|
||||
# Disable "Activity in window N" message
|
||||
set -g visual-activity off
|
||||
set -g monitor-activity off
|
||||
|
||||
# Resize all windows to max size?
|
||||
setw -g aggressive-resize on
|
||||
|
||||
# Change history limit
|
||||
set -g history-limit 4096
|
||||
|
||||
# Default status bar config (doesn't change the behavior of custom status bars)
|
||||
set -g status-justify left
|
||||
set -g status-bg default
|
||||
set -g status-bg green
|
||||
set -g status-interval 2
|
||||
|
||||
# Source extra configs
|
||||
source-file ~/.config/tmux/keybinds.conf
|
||||
source-file ~/.config/tmux/plugins.conf
|
||||
# source-file ~/.config/tmux/vim.conf
|
||||
source-file ~/.config/tmux/vim.conf
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue