X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/f8bd8714e62678851f97c1ae88633d59d24118c2..0c61f835a73119eb80e68d27cf95136c36aa092b:/README.md diff --git a/README.md b/README.md index 2b23477..9583a43 100644 --- a/README.md +++ b/README.md @@ -39,12 +39,18 @@ If you are not using any package manager, download the [tarball](https://github. ### Disable Folding -Add the following line to your `.vimrc` to disable folding. +Add the following line to your `.vimrc` to disable folding configuration. ```vim let g:vim_markdown_folding_disabled=1 ``` +This option only controls vim_markdown's folding configuration. To enable/disable folding use Vim's folding configuration. + +```vim +set [no]foldenable +``` + ### Set Initial Foldlevel Add the following line to your `.vimrc` to set the initial foldlevel. This option defaults to 0 (i.e. all folds are closed) and is ignored if folding is disabled.