summaryrefslogtreecommitdiffstats
path: root/.ghci
diff options
context:
space:
mode:
authorShivesh Mandalia <mail@shivesh.org>2023-01-22 21:57:27 +0000
committerShivesh Mandalia <mail@shivesh.org>2023-01-22 21:57:27 +0000
commit21c330dcd6f9b873a37e04487a24ac21606c3aee (patch)
tree25720c1336646ee850389ee92171a249d42ddfd5 /.ghci
parent5bcfb4a05124116d374c5b6696f52599de2f47f1 (diff)
downloadAOC_2022_haskell-21c330dcd6f9b873a37e04487a24ac21606c3aee.tar.gz
AOC_2022_haskell-21c330dcd6f9b873a37e04487a24ac21606c3aee.zip
complete day 4
Diffstat (limited to '.ghci')
-rw-r--r--.ghci19
1 files changed, 19 insertions, 0 deletions
diff --git a/.ghci b/.ghci
new file mode 100644
index 0000000..259c126
--- /dev/null
+++ b/.ghci
@@ -0,0 +1,19 @@
+:set -Wno-missing-local-signatures
+:set -Wno-type-defaults
+:set -Wno-missing-import-lists
+
+:set -XNoImplicitPrelude
+:set -XOverloadedStrings
+:set -XStandaloneKindSignatures
+:set -XTypeApplications
+import Relude
+
+:set prompt "\ESC[1;32mλ> \ESC[m"
+
+:def hlint const . return $ ":! hlint \"src\""
+:def hoogle \s -> return $ ":! hoogle --count=15 \"" ++ s ++ "\""
+
+:set -ferror-spans -freverse-errors -fprint-expanded-synonyms
+
+:set +m
+:set +t