dotfiles

$HOME is where the <3 is
git clone git://git.alexkarle.com/dotfiles.git
Log | Files | Refs | Submodules | README

commit c4b49add960e6aa0d309e0705b37c0a731fdc772 (patch)
parent b35c49ddd219a5a88f2eb3aac2d9e51018c6887c
Author: Alex Karle <alex@alexkarle.com>
Date:   Tue, 29 Sep 2020 00:08:51 -0400

vim: Fix local setting for vader filetype

setlocal should be used in all of these over set (so that
settings only occur for the buffer of the filetype).

Diffstat:
M.vim/ftplugin/vader.vim | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.vim/ftplugin/vader.vim b/.vim/ftplugin/vader.vim @@ -1,3 +1,3 @@ " vader.vim is a Vim testing framework by Junegunn " https://github.com/junegunn/vader.vim -set foldmethod=marker +setlocal foldmethod=marker