aboutsummaryrefslogtreecommitdiff
path: root/vim/after/ftplugin/text/spell.vim
diff options
context:
space:
mode:
Diffstat (limited to 'vim/after/ftplugin/text/spell.vim')
-rw-r--r--vim/after/ftplugin/text/spell.vim21
1 files changed, 0 insertions, 21 deletions
diff --git a/vim/after/ftplugin/text/spell.vim b/vim/after/ftplugin/text/spell.vim
deleted file mode 100644
index a9f5422b..00000000
--- a/vim/after/ftplugin/text/spell.vim
+++ /dev/null
@@ -1,21 +0,0 @@
-" text/spell.vim: Turn on spell checking for text files
-
-" Don't load if running compatible or too old
-if &compatible || v:version < 700
- finish
-endif
-
-" Don't load if already loaded
-if exists('b:did_ftplugin_text_spell')
- finish
-endif
-
-" Flag as loaded
-let b:did_ftplugin_text_spell = 1
-let b:undo_ftplugin = b:undo_ftplugin
- \ . '|unlet b:did_ftplugin_text_spell'
-
-" Spellcheck documents by default
-setlocal spell
-let b:undo_ftplugin = b:undo_ftplugin
- \ . '|setlocal spell<'