Skip to content

Instantly share code, notes, and snippets.

{
"color_scheme": "Packages/Theme - Nil/Big Duo.tmTheme",
"ignored_packages":
[
"Vintage"
],
"tab_size": 2,
"theme": "Nil.sublime-theme",
"translate_tabs_to_spaces": true,
"word_wrap": true,
@caiges
caiges / CodeFormatter.sublime-settings
Last active August 29, 2015 13:57
Sublime code formatter settings
{
// Path for PHP executable, e.g. "C:/Program Files/PHP/php.exe". If empty, uses command "php" from system environments
"codeformatter_php_path": "",
"codeformatter_php_options":
{
"indent_size": 2, // Indent size
"indent_with_tabs": false, // Indent with tabs or spaces
"indent_style": "k&r", // Indent the code in k&r, allman, gnu or whitesmiths style
"newline_before_comment": true, // add new line before comment block
@caiges
caiges / gist:10943050
Created April 16, 2014 23:51
Space Gray
{
"font_face": "Monaco",
"font_size": 12,
"ignored_packages":
[
"Markdown",
"Vintage"
],
"tab_size": 2,
set -x PATH /usr/local/bin $PATH
set -x HAXE_STD_PATH /usr/local/lib/haxe/std
function gst
git status
end
function ll
ls -lh $argv
end
@caiges
caiges / .vimrc
Created July 24, 2014 22:39
vimrc
" We don't need vi compatibility
set nocompatible
filetype off
" Vundle
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
" let Vundle manage Vundle
" required!
/***************************************************
----------------------------------------------------
Author: Alexandra Berke (aberke)
Written: Summer 2014
----------------------------------------------------
Formats the phonenumber as (222) 333-4444 within the input element
Binds only the number 2223334444 to the model
@caiges
caiges / gist:7edee7a976ceb1e10f51
Last active August 29, 2015 14:13
Preferences.sublime-settings
{
"color_scheme": "Packages/Predawn/predawn.tmTheme",
"font_face": "InputSans",
"font_size": 12,
"ignored_packages":
[
"Markdown"
],
"tab_size": 2,
"theme": "predawn.sublime-theme",
{
"color_scheme": "Packages/Predawn/predawn.tmTheme",
"font_face": "Fira Mono",
"font_size": 12,
"ignored_packages":
[
"Markdown"
],
"tab_size": 2,
"theme": "Freesia.sublime-theme",
{
"color_scheme": "Packages/Theme - Freesia/Triplet Lite.tmTheme",
"font_face": "Fira Mono",
"font_size": 12,
"ignored_packages":
[
"Markdown"
],
"tab_size": 2,
"theme": "Freesia.sublime-theme",
FROM ubuntu:13.10
RUN apt-get update
RUN apt-get install -y build-essential mercurial git subversion wget curl bzr
RUN DEBIAN_FRONTEND=noninteractive apt-get -y install golang
RUN mkdir /go
RUN export GOPATH=/go
ENV GOPATH /go