.tmux.conf

Fri, 30 Sep 2016 21:32:08 -0400

author
Meredith Howard <mhoward@roomag.org>
date
Fri, 30 Sep 2016 21:32:08 -0400
changeset 402
cb0889a78173
parent 401
037d31f52a75
child 403
cdab701bb9f6
permissions
-rw-r--r--

Split screen and vim keybinds into files

# Look good
set -g default-terminal "screen-256color"

set -g mouse on

# Start tab numbering at 1
set -g base-index 1
set -g pane-base-index 1
set -g renumber-windows on

# Allows for faster key repetition
set -sg escape-time 0

set -g pane-border-style bg=colour232,fg=colour235
set -g pane-active-border-style bg=colour232,fg=colour239
set -g window-active-style bg=colour232

set -g status-bg colour235
set -g status-fg cyan

set -g set-titles on
set -g set-titles-string "#h(#S)"


source-file ~/.tmux/screen-keys.conf
source-file ~/.tmux/vim-keys.conf

if-shell '[-e ~/.tmux.conf.local]' "source ~/.tmux.conf.local"

mercurial