diff --git a/after/ftplugin/vim.vim b/after/ftplugin/vim.vim index d0f33b9..fba721e 100644 --- a/after/ftplugin/vim.vim +++ b/after/ftplugin/vim.vim @@ -6,8 +6,7 @@ set formatoptions-=r " modeline is annoying in that the modeline get executed each time the window " focus is lost (see " https://github.com/tmux-plugins/vim-tmux-focus-events/issues/14) -set foldmethod=expr foldlevel=0 foldlevelstart=-1 - \ foldexpr=utils#VimFolds(v:lnum) foldtext=utils#MyFoldText() +set foldmethod=expr foldexpr=utils#VimFolds(v:lnum) foldtext=utils#MyFoldText() " Use :help command for keyword when pressing `K` in vim file, " see `:h K` and https://stackoverflow.com/q/15867323/6064933