This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
set nocompatible | |
set nowrap " don't wrap lines | |
set tabstop=4 " a tab is four spaces | |
set backspace=indent,eol,start | |
" allow backspacing over everything in insert mode | |
set autoindent " always set autoindenting on | |
set paste " Prepare for paste | |
set copyindent " copy the previous indentation on autoindenting | |
set number " always show line numbers | |
set shiftwidth=4 " number of spaces to use for autoindenting |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
// Reduces red-eye (tip: red bull may undo this) | |
"font_size": 18.0, | |
// Love Vim < love Sublime | |
"ignored_packages": | |
[ | |
"Vintage" | |
], |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Sass | |
.sass-cache | |
# Mac | |
.DS_Store | |
# Tmp files | |
*.swp | |
*~ | |
tmp |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<keymap version="1" name="Dvorak - Eclipse" parent="Eclipse (Mac OS X)"> | |
<action id="Back"> | |
<mouse-shortcut keystroke="button4" /> | |
</action> | |
<action id="CloseAllEditors"> | |
<keyboard-shortcut first-keystroke="shift meta W" /> | |
<keyboard-shortcut first-keystroke="shift control meta W" /> | |
</action> | |
<action id="CommentByBlockComment" /> | |
<action id="CommentByLineComment"> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Log | |
## Can’t follow (30x) redirects | |
http://stackoverflow.com/questions/18208224/force-sbt-to-follow-redirects-for-an-explicit-github-releases-url | |
## Build to watcch | |
https://travis-ci.org/mefellows/respite/builds/31590813 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
language: scala | |
scala: | |
- 2.10.3 | |
jdk: | |
- oraclejdk8 | |
- oraclejdk7 | |
- openjdk7 | |
env: | |
global: | |
- secure: glhEB9krKsLbmcoQ5l6uDPGX+WWYThNwK24eUFkqutnum2avk98Z3e5sXtldDR386E1GSaDZYzWE8rv0AF9Xdqz4MvnZ/ZK11DtUfvWt9Vrd/NhsV081Mks3iJsyq9rqxk0byazUCuosuCnRTr4jzSE5LrGp2w7Fe1C/yKETYTc= |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
travis encrypt BINTRAY_API_KEY=SOMEAPIKEYh3h3h3h3h3h3hmyusername --add | |
travis encrypt BINTRAY_USER="mybintrayusername" --add | |
travis encrypt SONATYPE_USER="mynexususername" --add | |
travis encrypt SONATYPE_PASS="mynexuspass" --add | |
travis encrypt COVERALLS_REPO_TOKEN=myapitokenmd5hash --add |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
gem install travis | |
travis login |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
language: scala | |
scala: | |
- 2.10.4 | |
jdk: | |
- oraclejdk8 | |
- oraclejdk7 | |
services: mongodb | |
script: | |
- sbt scoverage:test | |
- sbt coveralls |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
resolvers += Resolver.url( | |
"bintray-sbt-plugin-releases", | |
url("http://dl.bintray.com/content/sbt/sbt-plugin-releases"))( | |
Resolver.ivyStylePatterns) | |
addSbtPlugin("me.lessis" % "bintray-sbt" % "0.1.1") | |
resolvers += Classpaths.sbtPluginReleases | |
resolvers += Classpaths.typesafeReleases |
OlderNewer