summaryrefslogtreecommitdiff
path: root/lua/lv-neoformat/init.lua
blob: 4f3bab6016e8cbdac52711fc24fc8fd921cbd920 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
-- autoformat
if O.format_on_save then
  require("lv-utils").define_augroups {
    autoformat = {
      {
        "BufWritePre",
        "*",
        [[try | undojoin | Neoformat | catch /^Vim\%((\a\+)\)\=:E790/ | finally | silent Neoformat | endtry]],
      },
    },
  }
end