neovim/after/ftplugin/markdown.lua

8 lines
195 B
Lua

-- Specific settings for markdown files
-- Use treesitter for folding
-- Disable the color column
vim.opt.foldmethod="expr"
vim.opt.foldexpr="nvim_treesitter#foldexpr()"
vim.opt.foldlevel=0