KO
|
EN
gitlite — search
Search
#python
#java
#python3
#arduino
#golang
#machine-learning
#rust
#html
#flask
#javascript
#seismology
#nodejs
tlux
★ 12
Open GitHub ↗
Luxurious tmux configuration
Download README (.md)
Explore Similar Repositories
_sh
:
Command line tool to generate forks of the _s WordPress starter theme
Twitter-Bootstrap-Cheat-Sheet
:
Twitter Bootstrap Cheat Sheet
node-kestrel
:
Kestrel client module for NodeJS
Caravideo
:
An interactive video mixing system that broadcasts to online video streaming services. Created for the Abandon Normal Devices festival 2012
django-keyvalue
:
A django app for generic Key Value relationships between django model instances. Hang anything off anything.
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
tlux
?
Download (.md)
#Tlux Luxurious tmux configuration with Ruby. ##About Specify your tmux environments using an intuitive DSL instead of having to remember tmux commands. Set up different environemnts that can be shared between projects, have an environment for your Rails projects and specify it once, rather than once per project. ##Usage Tlux is available as a ruby gem, it has dependencies on tmux. Once you have tmux installed install the tlux gem: gem install tlux To get usage details just run the tlux command without any args tlux ##Config An example config showing some of the commands available window :editor do command "vim ." split :vertical, percentage: 30 do split :horizontal, lines: 20 end end window :console do command "tail -f log/development.log" split :vertical do command "rails c" end end window :server do command "rails s" end