aboutsummaryrefslogtreecommitdiff
path: root/vim/after/ftplugin
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2019-05-11 11:33:54 +1200
committerTom Ryder <tom@sanctum.geek.nz>2019-05-11 11:33:54 +1200
commit0001558ea2893adf47e1df009ab0ca51f8b4cea8 (patch)
tree68f603573eabd1dfffe6916e207cb56be2e8c0c2 /vim/after/ftplugin
parentMerge branch 'release/v4.23.0' into develop (diff)
downloaddotfiles-0001558ea2893adf47e1df009ab0ca51f8b4cea8.tar.gz
dotfiles-0001558ea2893adf47e1df009ab0ca51f8b4cea8.zip
Replace text.vim ftplugin entirely
This makes more sense than dancing around the potential availability of the stock one.
Diffstat (limited to 'vim/after/ftplugin')
-rw-r--r--vim/after/ftplugin/text.vim5
1 files changed, 0 insertions, 5 deletions
diff --git a/vim/after/ftplugin/text.vim b/vim/after/ftplugin/text.vim
deleted file mode 100644
index cda2891c..00000000
--- a/vim/after/ftplugin/text.vim
+++ /dev/null
@@ -1,5 +0,0 @@
-" Spellcheck documents we're actually editing (not just viewing)
-if has('spell') && &modifiable && !&readonly
- setlocal spell
- let b:undo_ftplugin .= '|setlocal spell<'
-endif