all repos

init.lua @ 2330b3d2ac99228564a0b5a3fffb81fa9cb98e43

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