Skip to content

Instantly share code, notes, and snippets.

@Oshuma
Created August 1, 2016 17:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Oshuma/921e3e45fd82015ef3115c1d3f161f42 to your computer and use it in GitHub Desktop.
Save Oshuma/921e3e45fd82015ef3115c1d3f161f42 to your computer and use it in GitHub Desktop.
bind r source-file ~/.tmux.conf
# remap prefix to Control-a
set -g prefix C-a
# bind 'C-a C-a' to type 'C-a'
bind C-a send-prefix
unbind C-b
set -g default-terminal "screen-256color"
set-window-option -g utf8 on
# bind k up-pane
# bind j down-pane
bind s split-window -h
bind v split-window -v
set-option -g status-keys vi
# Start window indexes at 1
# set -g base-index 1
# Increase this if running shell commands from this config.
set -g status-interval 30
# Fixes neovim delay when hitting ESC
set -sg escape-time 0
set -g status-bg black
set -g status-fg white
set -g status-left-length 50
set -g status-left '#[fg=white]#(whoami)#[fg=green]@#[fg=red]#H #[fg=green]][#[default] #[fg=magenta]#S#[fg=white]:#[fg=yellow]#W #[fg=green]][#[default]'
set -g status-right '#[fg=green]][ #[fg=cyan]%m/%d/%Y #[fg=white]%H:%M:%S#[default]'
setw -g mode-keys vi
setw -g monitor-activity on
setw -g window-status-bg black
setw -g window-status-fg cyan
setw -g window-status-current-attr underscore
setw -g window-status-current-fg white
setw -g window-status-current-bg black
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment