dotfiles/config/lvim/lua/plug/ts-unit.lua
2021-10-03 17:31:30 +03:00

14 lines
172 B
Lua

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