update lvim

This commit is contained in:
neoteny 2021-10-03 17:31:30 +03:00
parent a537caddf0
commit da1068fdc2
15 changed files with 169 additions and 127 deletions

View file

@ -0,0 +1,14 @@
local M = {}
function M.setup()
local ok, ts_unit = pcall(require, "ts-unit")
if not ok then
return
end
ts_unit.setup {
keymaps = true,
}
end
return M