home: vim: fastfold: use lua configuration

This commit is contained in:
Bruno BELANYI 2023-05-06 18:17:16 +01:00
parent e599a97e45
commit 9530864b10
1 changed files with 6 additions and 5 deletions

View File

@ -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