Last active
February 2, 2017 23:05
-
-
Save jakelazaroff/f82cb2c75333e1db9aa02a3bcb4f0017 to your computer and use it in GitHub Desktop.
Dotfiles
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
set nocompatible | |
syntax on |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment