diff options
Diffstat (limited to 'ghc/.ghc')
-rw-r--r-- | ghc/.ghc/ghci.conf | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/ghc/.ghc/ghci.conf b/ghc/.ghc/ghci.conf new file mode 100644 index 0000000..9cfcad1 --- /dev/null +++ b/ghc/.ghc/ghci.conf @@ -0,0 +1,39 @@ +:set -XBinaryLiterals +:set -XFlexibleContexts +:set -XNoMonomorphismRestriction + +:seti -XConstraintKinds +:seti -XDataKinds +:seti -XDeriveFunctor +:seti -XFlexibleInstances +:seti -XFunctionalDependencies +:seti -XGADTs +:seti -XLambdaCase +:seti -XMagicHash +:seti -XMultiParamTypeClasses +:seti -XMultiWayIf +:seti -XOverloadedLabels +:seti -XPackageImports +:seti -XPolyKinds +:seti -XRankNTypes +:seti -XScopedTypeVariables +:seti -XStandaloneDeriving +:seti -XTupleSections +:seti -XTypeFamilies +:seti -XTypeOperators +:seti -XUndecidableInstances + +:set +c +:set +m +:set +r +:set +s +:set +t + +:set prompt "\ESC[1;34mλ\ESC[m\STX \ESC[1;37m>\ESC[m\STX " +:set prompt-cont "\ESC[1;34m …\ESC[m\STX \ESC[1;37m>\ESC[m\STX " + +:def clear \_ -> pure (":!clear") +:def hoogle \x -> pure (":!hoogle --color --count=10 \"" ++ x ++ "\"") +:def hinfo \x -> pure (":!hoogle --color --info \"" ++ x ++ "\"") + +-- vim: filetype=haskell |