feat(nvim): add r & o to default formatoptions

This commit is contained in:
Price Hiller 2024-02-14 16:12:25 -06:00
parent 2952598440
commit 0987970579
Signed by: Price
GPG Key ID: C3FADDE7A8534BEB

View File

@ -139,6 +139,9 @@ M.setup = function()
-- Allow per project configuration via exrc
opt.exrc = true
-- Add `r` & `o` beyond the defaults provided, supports comment leaders
opt.formatoptions = "tcqjro"
end
return M