1
0
mirror of https://github.com/tiyn/dotfiles.git synced 2025-03-26 04:57:45 +01:00

nvim: conceallevel set more conservatively

This commit is contained in:
tiyn 2023-08-08 17:11:23 +02:00
parent 222b98d70b
commit ec1e911712
2 changed files with 1 additions and 3 deletions

View File

@ -75,7 +75,7 @@ vim.o.foldcolumn = '0'
vim.o.foldlevel = 99
vim.o.foldlevelstart = 99
vim.o.foldenable = true
vim.o.conceallevel = 2
vim.o.conceallevel = 0
-- load general mapped keys
require('style')

View File

@ -422,8 +422,6 @@ return require("lazy").setup({
ft = { 'markdown' },
config = function()
vim.g.vim_markdown_folding_style_pythonic = 1
vim.g.vim_markdown_folding_disabled = 0
vim.g.vim_markdown_conceal = 2
end
},