all repos

init.lua @ 45cbf16a53d1703992698f87a4c54a0ad302666c

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