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 /init.lua | |
parent | f4a1319352d466308cd85eb1263aef9fd2c54293 (diff) | |
download | sketchbook.nvim-d2f6073cb4e9c4026041288cd5cab2b2a0337c5a.tar.gz |
move to lua dir
Diffstat (limited to 'init.lua')
-rw-r--r-- | init.lua | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/init.lua b/init.lua deleted file mode 100644 index 0afcfe4..0000000 --- a/init.lua +++ /dev/null @@ -1,15 +0,0 @@ -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 |