all repos

init.lua @ 5fa3b15d882301af8837eb71b75236da74ad6191

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