diff options
author | christianchiarulli <[email protected]> | 2021-07-06 23:09:09 -0400 |
---|---|---|
committer | christianchiarulli <[email protected]> | 2021-07-06 23:09:09 -0400 |
commit | 82c24bd832e57118f4e2e03ed2186a1fb33a94cd (patch) | |
tree | e8b14fea2600dbac36168d927de57e040d10d4b8 /init.lua | |
parent | e3126124c55a490308bd4e3a8a9a83eaeabb364d (diff) | |
parent | d6b00cec25296e83c28b2da0cbfe9bc7ad629a70 (diff) |
Merge branch 'master' of github.com:ChristianChiarulli/LunarVim into stable
Diffstat (limited to 'init.lua')
-rw-r--r-- | init.lua | 14 |
1 files changed, 1 insertions, 13 deletions
@@ -7,6 +7,7 @@ require "lv-utils" require "lv-galaxyline" require "lv-treesitter" require "lv-which-key" +require "lv-neoformat" require "lsp" if O.lang.emmet.active then require "lsp.emmet-ls" @@ -14,16 +15,3 @@ end if O.lang.tailwindcss.active then require "lsp.tailwindcss-ls" end - --- 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 |