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
// should go in ~/.sbt/global.sbt | |
shellPrompt := { state => | |
import sbt.Keys.{name, version} | |
import scala.Console.RESET | |
val YELLOW_I = "\033[0;93m" | |
val GREEN_I = "\033[0;92m" | |
val RED_I = "\033[0;91m" | |
val BLACK_I = "\033[0;90m" | |
val CYAN_I = "\033[0;96m" | |
val s = Project.extract(state) |
OlderNewer