This commit is contained in:
Pratik
2019-12-18 00:56:01 +05:30
parent b81bc45941
commit e7cc18b9ab
2 changed files with 35 additions and 4 deletions

View File

@@ -1,3 +1,4 @@
######################## Key Bindings ########################
# Change prefix to -> (Ctrl + a)
set-option -g prefix C-a
unbind-key C-a
@@ -13,12 +14,42 @@ bind -n M-Down select-pane -D
bind -n S-Left previous-window
bind -n S-Right next-window
# Mouse mode
setw -g mouse on
# Set easier window split keys
bind-key v split-window -h
bind-key h split-window -v
# Easy config reload
bind-key r source-file ~/.tmux.conf \; display-message "~/.tmux.conf reloaded."
######################## Key Bindings ########################
######################## Windows ########################
# Start window numbers at 1 to match keyboard order with tmux window order
set -g base-index 1
set-window-option -g pane-base-index 1
# Renumber windows sequentially after closing any of them
set -g renumber-windows on
######################## Windows ########################
######################## Colors ########################
# improve colors
set -g default-terminal 'screen-256color'
# Soften status bar color from harsh green to light gray
set -g status-style bg='#666666',fg='#aaaaaa'
######################## Colors ########################
######################## Other Features ########################
# Increase scrollback lines
set -g history-limit 10000
# Mouse mode
setw -g mouse on
######################## Other Features ########################