Transitional package used during migration from Neorg
Find a file
2025-12-01 13:01:16 +09:00
parser copy files 2025-11-28 18:10:59 +09:00
parser-info copy files 2025-11-28 18:10:59 +09:00
README.md add readme 2025-12-01 13:01:16 +09:00

Usage

Load with Lazy.nvim

{
  -- 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,
},