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
6 vim.opt_local.cpoptions:append("I") -- don't delete indent when moving up/down