Skip to content

Instantly share code, notes, and snippets.

@olivernn
Created July 16, 2012 08:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save olivernn/3121642 to your computer and use it in GitHub Desktop.
Save olivernn/3121642 to your computer and use it in GitHub Desktop.
tlux dsl
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