From c5be7e7f0cddd3971a34bd003c3356eaf9bb3eb3 Mon Sep 17 00:00:00 2001 From: bretello Date: Fri, 25 Mar 2022 08:52:57 +0100 Subject: [PATCH] vim: set minimum fold lines --- vim/vimrc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/vim/vimrc b/vim/vimrc index 5905316..3ab48c2 100644 --- a/vim/vimrc +++ b/vim/vimrc @@ -53,6 +53,9 @@ set completeopt+=popup " Highlight the line the cursor is on set cursorline +" Minimum fold size +set foldminlines=3 + autocmd FileType qf,ll setlocal wrap "quickfix,loclist autocmd FileType markdown setlocal wrap spell spelllang=it,en autocmd FileType yaml,yml setlocal shiftwidth=2 softtabstop=2 expandtab