diff options
-rw-r--r-- | dotispell_default | 18 | ||||
-rwxr-xr-x | install | 9 |
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 @@ -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 |