diff options
author | Squibid <me@zacharyscheiman.com> | 2024-08-09 02:45:31 -0400 |
---|---|---|
committer | Squibid <me@zacharyscheiman.com> | 2024-08-09 02:45:31 -0400 |
commit | c489d393695e90d424f9ae51e35c4d42358e6a71 (patch) | |
tree | 12ea97ec4684fd82cd6b73dd127d0137b115837b /lua/snippets/norg.lua | |
parent | ad76983d969c318e6e234bc82384b4b025d70447 (diff) | |
download | nvim-c489d393695e90d424f9ae51e35c4d42358e6a71.tar.gz nvim-c489d393695e90d424f9ae51e35c4d42358e6a71.tar.bz2 nvim-c489d393695e90d424f9ae51e35c4d42358e6a71.zip |
yes there's a bit of java in my nvim config why do you ask?
Diffstat (limited to '')
-rw-r--r-- | lua/snippets/norg.lua | 28 |
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("]") + }) +} |