1
0
mirror of https://github.com/tiyn/dotfiles.git synced 2025-10-12 20:41:16 +02:00

nvim: improved folding configs

This commit is contained in:
2023-08-18 06:06:35 +02:00
parent 4beec8a2b0
commit 075bf61358
3 changed files with 16 additions and 1 deletions

View File

@@ -71,7 +71,6 @@ vim.o.foldlevel = 99
vim.o.foldlevelstart = 99
vim.o.foldenable = true
vim.o.conceallevel = 0
vim.g.markdown_folding = 1
-- load general mapped keys
@@ -85,3 +84,8 @@ require('loadplugins')
-- load general mapped keys
require('keymap')
vim.cmd([[
set foldopen-=hor
set foldclose-=hor
]])