diff options
-rw-r--r-- | haskell/.ghci | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/haskell/.ghci b/haskell/.ghci index e5bf06f..49d625a 100644 --- a/haskell/.ghci +++ b/haskell/.ghci @@ -10,9 +10,6 @@ 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 prompt "λ. " :def hoogle \str -> return $ ":! hoogle --count=15 \"" ++ str ++ "\"" |