Compare commits
2 commits
0f6f359232
...
4cee90d80f
Author | SHA1 | Date | |
---|---|---|---|
4cee90d80f | |||
7ece804f21 |
1 changed files with 13 additions and 7 deletions
|
@ -4,23 +4,29 @@ bind r source-file ~/.tmux.conf \; display-message "Config reloaded..."
|
|||
# Enable mouse control (clickable windows, panes, resizable panes)
|
||||
#set -g mouse on
|
||||
|
||||
######################################################################
|
||||
#####################################################################
|
||||
# History limit
|
||||
######################################################################
|
||||
#####################################################################
|
||||
set -g history-limit 500000
|
||||
|
||||
######################################################################
|
||||
#####################################################################
|
||||
# Key bindings
|
||||
######################################################################
|
||||
#####################################################################
|
||||
# switch panes using Alt-arrow without prefix
|
||||
###################################
|
||||
##################################
|
||||
bind -n M-Left select-pane -L
|
||||
bind -n M-Right select-pane -R
|
||||
bind -n M-Up select-pane -U
|
||||
bind -n M-Down select-pane -D
|
||||
|
||||
######################################################################
|
||||
#####################################################################
|
||||
# Enable full color support
|
||||
######################################################################
|
||||
#####################################################################
|
||||
set -g default-terminal "tmux-256color"
|
||||
set -ga terminal-overrides ",*256col*:Tc"
|
||||
|
||||
#####################################################################
|
||||
# Start windows and panes at 1, not 0
|
||||
#####################################################################
|
||||
set -g base-index 1
|
||||
setw -g pane-base-index 1
|
||||
|
|
Loading…
Reference in a new issue