-
-
Save cloud8421/3121704 to your computer and use it in GitHub Desktop.
tlux dsl
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
name "rails" | |
description "rails development environment" | |
window "editor", selected: true do | |
command "vim ." | |
split :horizontal, height: 20 | |
split :vertical do | |
dir "~/code/hotrod" | |
command "vim ." | |
end | |
end | |
window "console" do | |
command "bundle exec rails c" | |
split :vertical do | |
command "tail -f log/development.log" | |
end | |
end | |
window "server" do | |
command "bundle exec rails s" | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment