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

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

return M