This file contains hidden or 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
| case $- in | |
| *i*) ;; | |
| *) return;; | |
| esac | |
| HISTSIZE=1000 | |
| HISTFILESIZE=2000 | |
| shopt -s checkwinsize #check window size after each command | |
| shopt -s globstar #** recurse like git | |
| case "$TERM" in | |
| xterm-256color) color_prompt=yes;; |
This file contains hidden or 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
| lazy val nd4jVersion = SettingKey[String]("nd4jVersion") | |
| lazy val root = (project in file(".")).settings( | |
| scalaVersion := "2.11.8", | |
| crossScalaVersions := Seq("2.10.6", "2.11.8"), | |
| name := "nd4s", | |
| version := "0.6.0", | |
| organization := "org.nd4j", | |
| nd4jVersion := "0.6.0", | |
| libraryDependencies ++= Seq( |