A ZSH theme optimized for people who use:
- Solarized
- Git
- Unicode-compatible fonts and terminals (I use iTerm2 + Menlo)
For Mac users, I highly recommend iTerm 2 + Solarized Dark
| module.exports = function(grunt) { | |
| grunt.initConfig({ | |
| pkg: grunt.file.readJSON('package.json'), | |
| uglify: { | |
| options: { | |
| sourceMap: true, | |
| sourceMapIncludeSources: true, | |
| sourceMapIn: 'js/app.coffee.js.map' | |
| }, |
| # ~/.tmux.conf | |
| # | |
| # See the following files: | |
| # | |
| # /opt/local/share/doc/tmux/t-williams.conf | |
| # /opt/local/share/doc/tmux/screen-keys.conf | |
| # /opt/local/share/doc/tmux/vim-keys.conf | |
| # | |
| # URLs to read: | |
| # |
| # Usage: | |
| # source iterm2.zsh | |
| # iTerm2 window/tab color commands | |
| # Requires iTerm2 >= Build 1.0.0.20110804 | |
| # http://code.google.com/p/iterm2/wiki/ProprietaryEscapeCodes | |
| tab-color() { | |
| echo -ne "\033]6;1;bg;red;brightness;$1\a" | |
| echo -ne "\033]6;1;bg;green;brightness;$2\a" | |
| echo -ne "\033]6;1;bg;blue;brightness;$3\a" |
| enum Result<S, R, F> { | |
| Success(R, ~[S]), | |
| Failure(F) | |
| } | |
| struct Parser<'a, S, R, F> { parse : 'a |&[S]| -> Result<S,R,F> } | |
| trait Composable { | |
| fn Or(Self, Self) -> Self; | |
| } |
| /* Solarized Dark | |
| For use with Jekyll and Pygments | |
| http://ethanschoonover.com/solarized | |
| SOLARIZED HEX ROLE | |
| --------- -------- ------------------------------------------ | |
| base03 #002b36 background | |
| base01 #586e75 comments / secondary content |
| from fabric.api import env, task, run, sudo, cd, local | |
| from fabric.decorators import with_settings | |
| from fabric.operations import put | |
| env.user = 'ec2-user' | |
| env.hosts = [ | |
| 'ec2-your-address-1.us-west-2.compute.amazonaws.com', | |
| 'ec2-your-address-2.us-west-2.compute.amazonaws.com', | |
| 'ec2-your-address-3.us-west-2.compute.amazonaws.com', | |
| 'ec2-your-address-4.us-west-2.compute.amazonaws.com', |
| > module Main where | |
| First, import all the needed modules. | |
| > import Text.Parsec hiding (State) | |
| > import Text.Parsec.Indent | |
| > import Control.Monad.State | |
| Next, define our new Parser type. This replaces the Identity monad | |
| with the (State SourcePos) monad. |
| # Tomorrow Night Eighties | |
| $background: #2d2d2d | |
| $current-line: #393939 | |
| $selection: #515151 | |
| $foreground: #cccccc | |
| $comment: #999999 | |
| $red: #f2777a | |
| $orange: #f99157 | |
| $yellow: #ffcc66 | |
| $green: #99cc99 |
| ➜ ycm_build cmake -G "Unix Makefiles" . ~/.vim/bundle/YouCompleteMe/cpp | |
| -- The C compiler identification is Clang 4.1.0 | |
| -- The CXX compiler identification is Clang 4.1.0 | |
| -- Check for working C compiler: /usr/bin/cc | |
| -- Check for working C compiler: /usr/bin/cc -- works | |
| -- Detecting C compiler ABI info | |
| -- Detecting C compiler ABI info - done | |
| -- Check for working CXX compiler: /usr/bin/c++ | |
| -- Check for working CXX compiler: /usr/bin/c++ -- works | |
| -- Detecting CXX compiler ABI info |