Last active
October 13, 2015 23:38
-
-
Save bswinnerton/4273749 to your computer and use it in GitHub Desktop.
My .screenrc
This file contains 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
# 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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
For Rails dev