summaryrefslogtreecommitdiffstats
path: root/lua/snippets/norg.lua
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--lua/snippets/norg.lua28
1 files changed, 28 insertions, 0 deletions
diff --git a/lua/snippets/norg.lua b/lua/snippets/norg.lua
new file mode 100644
index 0000000..d96a471
--- /dev/null
+++ b/lua/snippets/norg.lua
@@ -0,0 +1,28 @@
+require('core.snippets.shorthands')
+
+local function file_name(args, parent, user_args)
+ return vim.fn.expand("%:t:r")
+end
+
+return {
+ -- header level 1, usually this has the same name as the file
+ s("h1", {
+ t("* "),
+ c(1, {
+ f(file_name, {}),
+ i(1, "header")
+ })
+ }),
+
+ -- link snippet
+ s("link", {
+ t("{"),
+ c(1, {
+ sn(nil, { t({":$/"}), i(1, "path to file"), t(":") }),
+ i(1, "https://example.com")
+ }),
+ t("}["),
+ i(2, "description"),
+ t("]")
+ })
+}