all repos

dotfiles @ 2feea5c

my dotfiles

config/lvim/lua/plug/ts-unit.lua (view raw)

1
2
3
4
5
6
7
8
9
10
11
12
13
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