aboutsummaryrefslogtreecommitdiff
path: root/files/vim/ftplugin/text/text.vim
diff options
context:
space:
mode:
Diffstat (limited to 'files/vim/ftplugin/text/text.vim')
-rw-r--r--files/vim/ftplugin/text/text.vim18
1 files changed, 0 insertions, 18 deletions
diff --git a/files/vim/ftplugin/text/text.vim b/files/vim/ftplugin/text/text.vim
deleted file mode 100644
index 406c1e1..0000000
--- a/files/vim/ftplugin/text/text.vim
+++ /dev/null
@@ -1,18 +0,0 @@
-" ~/.vim/ftplugin/text/text.vim
-" Plain text files vim configuration
-"
-" Syntastic linter: proselint
-
-" Tabs hate: tabs are expanded to 2 spaces
-setlocal tabstop=2 shiftwidth=2 expandtab
-" Show existing tabs (they can be deleted with :retab)
-setlocal list
-
-call matchadd('ColorColumn', '\%101v', 100)
-setlocal textwidth=100
-
-nnoremap <buffer> <leader>C :sp ~/.vim/ftplugin/text/text.vim<CR>
-
-" Proselint is slow to act
-nnoremap <buffer> <leader>sp :SyntasticCheck proselint<CR>
-nnoremap <buffer> <leader>e :Errors<CR>