From 7af5ffdd43e135ed29d5d5492262fba249157ce1 Mon Sep 17 00:00:00 2001 From: Robin Krahl Date: Wed, 24 Feb 2016 18:15:10 +0100 Subject: .vim/ftplugin/tex.vim: use setlocal insted of set --- .vim/ftplugin/tex.vim | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.vim/ftplugin/tex.vim b/.vim/ftplugin/tex.vim index 46732d4..40e8bf7 100644 --- a/.vim/ftplugin/tex.vim +++ b/.vim/ftplugin/tex.vim @@ -1,5 +1,5 @@ -set tabstop=2 -set shiftwidth=2 -set expandtab +setlocal tabstop=2 +setlocal shiftwidth=2 +setlocal expandtab -set colorcolumn=80 +setlocal colorcolumn=80 -- cgit v1.2.1