├── .github ├── ISSUE_TEMPLATE │ ├── bug-report.md │ └── feature-request.md └── workflows │ └── release-please.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── README.norg ├── lua └── neorg │ └── modules │ └── external │ └── templates │ ├── default_snippets.lua │ ├── module.lua │ ├── snippet_handler.lua │ └── utils.lua └── stylua.toml /.github/ISSUE_TEMPLATE/bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysan3/neorg-templates/HEAD/.github/ISSUE_TEMPLATE/bug-report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysan3/neorg-templates/HEAD/.github/ISSUE_TEMPLATE/feature-request.md -------------------------------------------------------------------------------- /.github/workflows/release-please.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysan3/neorg-templates/HEAD/.github/workflows/release-please.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysan3/neorg-templates/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysan3/neorg-templates/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysan3/neorg-templates/HEAD/README.md -------------------------------------------------------------------------------- /README.norg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysan3/neorg-templates/HEAD/README.norg -------------------------------------------------------------------------------- /lua/neorg/modules/external/templates/default_snippets.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysan3/neorg-templates/HEAD/lua/neorg/modules/external/templates/default_snippets.lua -------------------------------------------------------------------------------- /lua/neorg/modules/external/templates/module.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysan3/neorg-templates/HEAD/lua/neorg/modules/external/templates/module.lua -------------------------------------------------------------------------------- /lua/neorg/modules/external/templates/snippet_handler.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysan3/neorg-templates/HEAD/lua/neorg/modules/external/templates/snippet_handler.lua -------------------------------------------------------------------------------- /lua/neorg/modules/external/templates/utils.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysan3/neorg-templates/HEAD/lua/neorg/modules/external/templates/utils.lua -------------------------------------------------------------------------------- /stylua.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysan3/neorg-templates/HEAD/stylua.toml --------------------------------------------------------------------------------