refac(prog/nvim): hide fold column

This commit is contained in:
Dmitriy Pleshevskiy 2022-04-14 23:00:44 +03:00
parent 414f836a3e
commit f3cc27ebe8
2 changed files with 1 additions and 1 deletions

View file

@ -20,6 +20,7 @@ set nowritebackup
set updatetime=300
set shortmess+=c
set nopaste
set foldcolumn=0
" }}}
" Mappings {{{

View file

@ -18,5 +18,4 @@ endfunction
function! s:SetlFold(method, lvl)
let &foldmethod = a:method
let &foldlevel = a:lvl
let &foldcolumn = 1
endfunction