Skip to content

Instantly share code, notes, and snippets.

@khebbie
Last active August 29, 2015 14:01
Show Gist options
  • Save khebbie/7b08cc42f14ae02b22d4 to your computer and use it in GitHub Desktop.
Save khebbie/7b08cc42f14ae02b22d4 to your computer and use it in GitHub Desktop.
set -g default-terminal "screen-256color"
# soften status bar color from harsh green to light gray
set -g status-bg '#777777'
set -g status-fg '#aaaaaa'
set -g status on
set -g status-keys vi
set -g history-limit 1000000
set -g prefix C-t
set -g status-right '#7H | %F %s'
bind-key C-t last-window
bind-key C-l list-commands
setw -g monitor-activity on
set -g visual-activity on
# ~/.tmuxinator/bemyeyes.yml
name: bemyeyes
root: ~/Documents/src/bemyeyes/bemyeyes-server/
# Optional tmux socket
# socket_name: foo
# Runs before everything. Use it to start daemons etc.
# pre: /usr/local/bin/mongod
# Runs in each window and pane before window/pane specific commands. Useful for setting up interpreter versions.
# pre_window: rbenv shell 2.0.0-p247
# Pass command line options to tmux. Useful for specifying a different tmux.conf.
# tmux_options: -f ~/.tmux.mac.conf
# Change the command to call tmux. This can be used by derivatives/wrappers like byobu.
# tmux_command: byobu
windows:
- cmdline:
layout: main-vertical
panes:
- stt
- services:
layout: main-vertical
panes:
- ruby -S rackup -w config.ru
- logs: less +f log/app.log
- mongo: mongod
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment