diff options
| author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2024-07-25 01:31:34 +0200 |
|---|---|---|
| committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2024-07-25 01:31:34 +0200 |
| commit | 3a007886fe248bedc5e189f5fb933379fdc72d12 (patch) | |
| tree | 85608276db5f4d84f54492b41c51a0eae0d91b5e /fnl/plugins/snippets/init.fnl | |
| parent | 0d18478b7471f347510a61e9361ab271d3b40abf (diff) | |
Refactor workflow snippets
Diffstat (limited to 'fnl/plugins/snippets/init.fnl')
| -rw-r--r-- | fnl/plugins/snippets/init.fnl | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/fnl/plugins/snippets/init.fnl b/fnl/plugins/snippets/init.fnl index b586d76..016b3b6 100644 --- a/fnl/plugins/snippets/init.fnl +++ b/fnl/plugins/snippets/init.fnl @@ -3,8 +3,10 @@ (local dependencies [:rafamadriz/friendly-snippets]) (fn add-snippets [] - (let [org (require :plugins.snippets.org)] - (org.add-snippets))) + (let [org (require :plugins.snippets.org) + workflow (require :plugins.snippets.workflow)] + (org.add-snippets) + (workflow.add-snippets))) (fn config [] (let [ls (require :luasnip) |