diff --git a/home/vim/plugin/settings/fastfold.vim b/home/vim/plugin/settings/fastfold.vim index a1f1787..3643e18 100644 --- a/home/vim/plugin/settings/fastfold.vim +++ b/home/vim/plugin/settings/fastfold.vim @@ -1,5 +1,6 @@ -" Intercept all fold commands -let g:fastfold_fold_command_suffixes=[ - \ 'x', 'X', 'a', 'A', 'o', 'O', 'c', 'C', - \ 'r', 'R', 'm', 'M', 'i', 'n', 'N' - \ ] +lua << EOF +-- Intercept all fold commands +vim.g.fastfold_fold_command_suffixes = { + "x", "X", "a", "A", "o", "O", "c", "C", "r", "R", "m", "M", "i", "n", "N", +} +EOF