all repos

init.lua @ e3d74c9b8b01611a0870ef0bd36c546283736342

my nvim config

init.lua/lua/utils.lua(view raw)

1
2
3
4
5
6
7
8
9
local M = {}

M.opts = { noremap = true, silent = true }

function M.get_config(name)
  return string.format("require[[%s]].setup()", name)
end

return M