aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--dotispell_default18
-rwxr-xr-xinstall9
2 files changed, 27 insertions, 0 deletions
diff --git a/dotispell_default b/dotispell_default
new file mode 100644
index 0000000..6494471
--- /dev/null
+++ b/dotispell_default
@@ -0,0 +1,18 @@
+geoscience
+geosciences
+geoscientists
+Google's
+grep
+neuroscience
+neurosciences
+neuroscientists
+prescientific
+presciently
+pseudoscience
+scienter
+scientia
+scientificity
+scientifique
+scientism
+scientology
+synthesise
diff --git a/install b/install
new file mode 100755
index 0000000..3e28a29
--- /dev/null
+++ b/install
@@ -0,0 +1,9 @@
+#!/bin/bash
+set -e
+if [ -f ~/.ispell_default ]; then
+ cat <<'EOF' >&2
+You already have a `~/.ispell_default`. Move it out of the way.
+EOF
+ exit 1
+fi
+ln -s "$(pwd)/dotispell_default" ~/.ispell_default