From e3c85a7df5323e48cfbab1a34eccc296c10caf62 Mon Sep 17 00:00:00 2001 From: Bruno BELANYI Date: Mon, 13 Jan 2020 15:51:29 +0100 Subject: [PATCH] [ADD][VIM] Tex filetype configuration --- vim/.vim/after/ftplugin/tex.vim | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 vim/.vim/after/ftplugin/tex.vim diff --git a/vim/.vim/after/ftplugin/tex.vim b/vim/.vim/after/ftplugin/tex.vim new file mode 100644 index 0000000..f0560da --- /dev/null +++ b/vim/.vim/after/ftplugin/tex.vim @@ -0,0 +1,6 @@ +" Create the `b:undo_ftplugin` variable if it doesn't exist +call ftplugined#check_undo_ft() + +" Use 2 spaces indentation inside TeX files +setlocal shiftwidth=2 +let b:undo_ftplugin.='|setlocal shiftwidth<'