From ed567fdc17f29ea6e36daf47e20e2f93f4626eeb Mon Sep 17 00:00:00 2001 From: Yiyang Kang Date: Mon, 1 Dec 2025 13:01:16 +0900 Subject: [PATCH] add readme --- README.md | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..66ebd7a --- /dev/null +++ b/README.md @@ -0,0 +1,25 @@ +# Usage + +Load with `Lazy.nvim` + +```lua +{ + -- Neorg is still required because we need its code to complete the setup of + -- highlight groups. + "nvim-neorg/neorg", + version = "^9.0.0", + lazy = true, + config = nil, +}, +{ + url = "https://git.gensokyo.cafe/kkyy/neorg-migrate-tmp.git", + ft = "norg", + dependencies = { + "nvim-neorg/neorg", + }, + config = function() + local norg_hl = require("neorg.modules.core.highlights.module") + norg_hl.public.trigger_highlights() + end, +}, +```