]> git.rmz.io Git - dotfiles.git/blob - nvim/ftplugin/norg.lua
nvim: formatoptions for norg
[dotfiles.git] / nvim / ftplugin / norg.lua
1 vim.opt_local.formatoptions:remove("r") -- don't insert comment leader after enter
2 vim.opt_local.formatoptions:remove("n") -- don't indent after enumerations
3 vim.opt_local.formatoptions:append("w") -- trailing space continues paragraph
4 vim.opt_local.formatoptions:append("a") -- auto format paragraphs
5
6 vim.opt_local.cpoptions:append("I") -- don't delete indent when moving up/down