As configured in my dotfiles.
start new:
tmux
start new with session name:
As configured in my dotfiles.
start new:
tmux
start new with session name:
I'm trying to make a horizontal rainbow stripe background gradient mixin, but I feel like this is way too verbose. How can it be better?
Goals:
| require 'bitly' | |
| module Jekyll | |
| class BitlyFilterCache | |
| def initialize | |
| @result_cache = {} | |
| config = Jekyll.configuration({}) | |
| @username = config['bitly']['username'] | |
| @key = config['bitly']['api_key'] | |
| Bitly.use_api_version_3 |
| add_filter("mce_external_plugins", "tomjn_mce_external_plugins"); | |
| function tomjn_mce_external_plugins($plugin_array){ | |
| $plugin_array['typekit'] = get_template_directory_uri().'/typekit.tinymce.js'; | |
| return $plugin_array; | |
| } |
| require 'bundler/capistrano' | |
| set :application, "net" | |
| set :repository, "git@githost.com:net.git" | |
| set :scm, :git | |
| set :default_environment, { | |
| 'PATH' => "$HOME/.rbenv/shims:$HOME/.rbenv/bin:$PATH" | |
| } |
| // global colour variables: | |
| @blue = #3CF; | |
| @red = #DF1F45 | |
| #content { | |
| background: #eee; | |
| padding: 25px; | |
| ## | |
| # Better Errors plugin on Padrino | |
| # | |
| # https://github.com/charliesome/better_errors | |
| # | |
| GEMFILE = <<-GEMFILE | |
| # Better Errors | |
| group :development do |