dotfiles

My personal shell configs and stuff
git clone git://git.alex.balgavy.eu/dotfiles.git
Log | Files | Refs | Submodules | README | LICENSE

commit 756b8d77b7b1b3c5bed4cfdee0eccbcdd047aff2
parent 79e71b7c8d1e709904f2df0c98c9ddc8f360b7ab
Author: Alex Balgavy <alex@balgavy.eu>
Date:   Sat, 27 Feb 2021 14:04:03 +0100

vim: fix b:undo_ftplugin for yaml

Diffstat:
Mvim/after/ftplugin/yaml.vim | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/vim/after/ftplugin/yaml.vim b/vim/after/ftplugin/yaml.vim @@ -1,6 +1,6 @@ setlocal shiftwidth=4 tabstop=4 softtabstop=4 expandtab if exists('b:undo_ftplugin') - let b:undo_ftplugin .= '| shiftwidth< tabstop< softtabstop< expandtab<' + let b:undo_ftplugin .= '| set shiftwidth< tabstop< softtabstop< expandtab<' else - let b:undo_ftplugin = '| shiftwidth< tabstop< softtabstop< expandtab<' + let b:undo_ftplugin = '| set shiftwidth< tabstop< softtabstop< expandtab<' endif