Created
November 27, 2015 15:53
-
-
Save magamig/b74bbe1ba437b005d23e to your computer and use it in GitHub Desktop.
ghci personal settings file
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
import qualified IPPrint | |
import qualified Language.Haskell.HsColour as HsColour | |
import qualified Language.Haskell.HsColour.Colourise as HsColour | |
import qualified Language.Haskell.HsColour.Output as HsColour | |
let myColourPrefs = HsColour.defaultColourPrefs { HsColour.conid = [HsColour.Foreground HsColour.Yellow, HsColour.Bold], HsColour.conop = [HsColour.Foreground HsColour.Yellow], HsColour.string = [HsColour.Foreground HsColour.Green], HsColour.char = [HsColour.Foreground HsColour.Cyan], HsColour.number = [HsColour.Foreground HsColour.Red, HsColour.Bold], HsColour.layout = [HsColour.Foreground HsColour.White], HsColour.keyglyph = [HsColour.Foreground HsColour.White] } | |
let myPrint = putStrLn . HsColour.hscolour (HsColour.TTYg HsColour.XTerm256Compatible) myColourPrefs False False "" False . IPPrint.pshow | |
:set -interactive-print=myPrint | |
:set -XNoMonomorphismRestriction | |
:set prompt "\ESC[31m\STX λ > \ESC[m\STX" | |
:def hlint const . return $ ":! hlint \"src\"" | |
:def hoogle \s -> return $ ":! hoogle --count=15 \"" ++ s ++ "\"" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment