| 12345678910111213141516 | -- autoformatif O.format_on_save then  require("lv-utils").define_augroups {    autoformat = {      {        "BufWritePre",        "*",        [[try | undojoin | Neoformat | catch /^Vim\%((\a\+)\)\=:E790/ | finally | silent Neoformat | endtry]],      },    },  }endif not O.format_on_save then  vim.cmd ":autocmd! autoformat"end
 |