aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--VERSION4
-rw-r--r--vim/after/indent/mail.vim8
2 files changed, 10 insertions, 2 deletions
diff --git a/VERSION b/VERSION
index 8c58c115..72b6691e 100644
--- a/VERSION
+++ b/VERSION
@@ -1,2 +1,2 @@
-tejr dotfiles v8.2.0
-Tue, 10 Dec 2019 01:18:39 +0000
+tejr dotfiles v8.3.0
+Wed, 11 Dec 2019 00:01:31 +0000
diff --git a/vim/after/indent/mail.vim b/vim/after/indent/mail.vim
new file mode 100644
index 00000000..ba6dfdeb
--- /dev/null
+++ b/vim/after/indent/mail.vim
@@ -0,0 +1,8 @@
+" Use four spaces for indentation
+setlocal expandtab
+setlocal shiftwidth=4
+let b:undo_ftplugin .= '|setlocal expandtab< shiftwidth<'
+if &l:softtabstop != -1
+ let &l:softtabstop = &l:shiftwidth
+ let b:undo_ftplugin .= '|setlocal softtabstop<'
+endif