aboutsummaryrefslogtreecommitdiff
path: root/lua/denote/init.lua
blob: 396486f10a387dde7effd2792c72d19b8e5507e2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
local M = {
	api = require("denote.api"),
	cmd = require("denote.cmd"),
}

---@param config DenoteConfig
function M.setup(config)
	M.cmd.load_cmd()
	if config then
		M.config = config
	end
end

return M