diff options
author | Camil Staps | 2018-05-05 16:13:50 +0200 |
---|---|---|
committer | Camil Staps | 2018-05-05 16:13:50 +0200 |
commit | 9cfb8de7f20b11154903dd6f8151f9cda5accac0 (patch) | |
tree | 2e0bcc4262054bd7773dcdbae47f110f8469a8ed /haskell | |
parent | Add tabular plugin to vim (diff) |
Remove GHCi bloat
Diffstat (limited to 'haskell')
-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 ++ "\"" |