mirror of
https://github.com/olexsmir/dotfiles.git
synced 2026-01-15 08:41:34 +02:00
14 lines
172 B
Lua
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
|