ChristianChiarulli / lvim

My config for LunarVim

Home Page:https://www.lunarvim.org

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

vim.cmd [[set formatoptions-=cro]] -- TODO: this doesn't seem to work

kola-web opened this issue · comments

try it

vim.api.nvim_create_autocmd({ "FileType" }, {
	pattern = { "*" },
	callback = function()
		vim.cmd([[
       set formatoptions-=cro
    ]])
	end,
})