Skip to content

Instantly share code, notes, and snippets.

@bswinnerton
Last active October 13, 2015 23:38
Show Gist options
  • Save bswinnerton/4273749 to your computer and use it in GitHub Desktop.
Save bswinnerton/4273749 to your computer and use it in GitHub Desktop.
My .screenrc
# Suppress startup message
startup_message off
# Fix vim veritcal sizing issues inside screen
altscreen on
# Make top window cd into folder
chdir /var/www/WEBROOT/
# Start screen on top
screen -t "Development"
# Confiure bottom screen
split
focus
chdir /var/www/WEBROOT/
screen -t "Console" sh -c "rvmsudo rails c"
resize 12
# Configure bottom right screen
split -v
focus
chdir ~/
screen -t "Shell"
# Select top window
focus up
focus up
@bswinnerton
Copy link
Author

For Rails dev

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment