neovim/after/ftplugin/markdown.lua

14 lines
332 B
Lua

-- Specific settings for markdown files
-- Enable the autowrite feature for all commands
-- See :h awa
vim.opt.awa=true
-- Conceal some syntax
vim.opt.conceallevel = 2
-- Use treesitter to fold markdown syntax
-- vim.opt.markdown_folding = 1
-- vim.opt.foldmethod = 'expr'
-- vim.opt.foldexpr = 'v:lua.vim.treesitter.foldexpr()'