diff options
author | iurii plugatarov <[email protected]> | 2024-08-02 23:14:43 +0200 |
---|---|---|
committer | iurii plugatarov <[email protected]> | 2024-08-02 23:14:43 +0200 |
commit | d2f6073cb4e9c4026041288cd5cab2b2a0337c5a (patch) | |
tree | e56f52a63696410a3227e08577779a0a491a53bb /lua/init.lua | |
parent | f4a1319352d466308cd85eb1263aef9fd2c54293 (diff) | |
download | sketchbook.nvim-d2f6073cb4e9c4026041288cd5cab2b2a0337c5a.tar.gz |
move to lua dir
Diffstat (limited to 'lua/init.lua')
-rw-r--r-- | lua/init.lua | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/lua/init.lua b/lua/init.lua new file mode 100644 index 0000000..0afcfe4 --- /dev/null +++ b/lua/init.lua @@ -0,0 +1,15 @@ +local config = require "sketchbook.config" +local create_note = require "sketchbook.create_note" +local update_index = require "sketchbook.update_index" +local search_notes = require "sketchbook.search_notes" +local select_template = require "sketchbook.select_template" +local quick_note = require "sketchbook.quick_note" +local git_support = require "sketchbook.git_sync" + +local M = {} + +function M.setup(user_config) + config.setup(user_config) +end + +return M |