Skip to content

Instantly share code, notes, and snippets.

@jakelazaroff
Last active February 2, 2017 23:05
Show Gist options
  • Save jakelazaroff/f82cb2c75333e1db9aa02a3bcb4f0017 to your computer and use it in GitHub Desktop.
Save jakelazaroff/f82cb2c75333e1db9aa02a3bcb4f0017 to your computer and use it in GitHub Desktop.
Dotfiles
# remap prefix from 'C-b' to 'C-a'
unbind C-b
set-option -g prefix C-a
bind-key C-a send-prefix
# turn on mouse scrollback
setw -g mouse on
# index windows and panes at 1
set -g base-index 1
setw -g pane-base-index 1
set-option -g renumber-windows on
# style status bar
set -g status-justify left
set -g status-bg "#222222"
set -g status-fg "#3399ff"
set -g status-interval 2
set -g status-left ""
set -g status-right ""
# style window tabs
setw -g window-status-format "#I·#W "
setw -g window-status-current-format "#I·#W "
setw -g window-status-current-fg "#ccff33"
set nocompatible
syntax on
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment