refactor(nvim): use default formatoptions

This commit is contained in:
Price Hiller 2024-02-19 00:19:19 -06:00
parent bf4bb95721
commit 5574a930b2
Signed by: Price
GPG Key ID: C3FADDE7A8534BEB
2 changed files with 0 additions and 10 deletions

View File

@ -2,10 +2,3 @@ vim.opt_local.shiftwidth = 2
vim.opt_local.modeline = true
vim.opt_local.wrap = false
vim.opt_local.conceallevel = 1
vim.opt_local.comments = {
":- [ ]",
":- [x]",
":- [X]",
":- [-]",
":-"
}

View File

@ -139,9 +139,6 @@ 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