Skip to content

Instantly share code, notes, and snippets.

@MatthiasJReisinger
Last active January 13, 2018 20:03
Show Gist options
  • Save MatthiasJReisinger/7a83de42fba79ae4947eb7465b806958 to your computer and use it in GitHub Desktop.
Save MatthiasJReisinger/7a83de42fba79ae4947eb7465b806958 to your computer and use it in GitHub Desktop.
tmux.conf
# open new windows in the current path
bind c new-window -c "#{pane_current_path}"
# reload config file
bind r source-file ~/.tmux.conf
# shorten command delay
set -sg escape-time 1
# don't rename windows automatically
set-option -g allow-rename off
# mouse control (clickable windows, panes, resizable panes)
set -g mouse on
# Use Alt-arrow keys without prefix key to switch panes
bind -n M-h select-pane -L
bind -n M-l select-pane -R
bind -n M-k select-pane -U
bind -n M-j select-pane -D
# set default terminal mode to 256 colors
set -g default-terminal "screen-256color"
#######################
#### DESIGN CHANGES ###
#######################
### panes
set -g pane-border-fg black
set -g pane-active-border-fg brightred
# pane colors
set -g pane-border-bg colour235
set -g pane-border-fg colour238
set -g pane-active-border-bg colour236
set -g pane-active-border-fg colour51
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment