Showing preview only (1,124K chars total). Download the full file or copy to clipboard to get everything.
Repository: nvim-neorg/neorg
Branch: main
Commit: 30e723dd578c
Files: 122
Total size: 1.0 MB
Directory structure:
gitextract_dcaeq6cv/
├── .busted
├── .envrc
├── .github/
│ ├── CODEOWNERS
│ ├── FUNDING.yml
│ ├── ISSUE_TEMPLATE/
│ │ ├── bug_report.yml
│ │ ├── config.yml
│ │ └── feature_request.yml
│ └── workflows/
│ ├── checks.yml
│ ├── gendoc.yml
│ ├── integration_tests.yml
│ ├── luarocks.yml
│ ├── semver.yml
│ ├── sponsors.yml
│ ├── stylua.yml
│ ├── tests.yml
│ └── version_in_code.yml
├── .gitignore
├── .luacheckrc
├── .styluaignore
├── CHANGELOG.md
├── LICENSE
├── Makefile
├── README.md
├── ROADMAP.md
├── doc/
│ ├── cheatsheet.norg
│ ├── neorg.norg
│ └── tags
├── docgen/
│ ├── docgen.lua
│ ├── fileio.lua
│ ├── init.lua
│ └── minimal_init.vim
├── docs/
│ ├── CONTRIBUTING.md
│ └── README.md
├── flake.nix
├── lua/
│ └── neorg/
│ ├── core/
│ │ ├── callbacks.lua
│ │ ├── config.lua
│ │ ├── init.lua
│ │ ├── log.lua
│ │ ├── modules.lua
│ │ └── utils.lua
│ ├── external/
│ │ └── log.lua
│ ├── health.lua
│ ├── init.lua
│ ├── modules/
│ │ └── core/
│ │ ├── autocommands/
│ │ │ └── module.lua
│ │ ├── clipboard/
│ │ │ ├── code-blocks/
│ │ │ │ └── module.lua
│ │ │ └── module.lua
│ │ ├── completion/
│ │ │ └── module.lua
│ │ ├── concealer/
│ │ │ ├── module.lua
│ │ │ ├── preset_basic/
│ │ │ │ └── module.lua
│ │ │ ├── preset_diamond/
│ │ │ │ └── module.lua
│ │ │ └── preset_varied/
│ │ │ └── module.lua
│ │ ├── defaults/
│ │ │ └── module.lua
│ │ ├── dirman/
│ │ │ ├── module.lua
│ │ │ ├── tests.lua
│ │ │ └── utils/
│ │ │ └── module.lua
│ │ ├── esupports/
│ │ │ ├── hop/
│ │ │ │ └── module.lua
│ │ │ ├── indent/
│ │ │ │ └── module.lua
│ │ │ └── metagen/
│ │ │ └── module.lua
│ │ ├── export/
│ │ │ ├── html/
│ │ │ │ └── module.lua
│ │ │ ├── markdown/
│ │ │ │ └── module.lua
│ │ │ └── module.lua
│ │ ├── fs/
│ │ │ └── module.lua
│ │ ├── highlights/
│ │ │ └── module.lua
│ │ ├── integrations/
│ │ │ ├── coq_nvim/
│ │ │ │ └── module.lua
│ │ │ ├── image/
│ │ │ │ └── module.lua
│ │ │ ├── nvim-cmp/
│ │ │ │ └── module.lua
│ │ │ ├── nvim-compe/
│ │ │ │ └── module.lua
│ │ │ ├── otter/
│ │ │ │ └── module.lua
│ │ │ ├── treesitter/
│ │ │ │ └── module.lua
│ │ │ ├── truezen/
│ │ │ │ └── module.lua
│ │ │ └── zen_mode/
│ │ │ └── module.lua
│ │ ├── itero/
│ │ │ └── module.lua
│ │ ├── journal/
│ │ │ └── module.lua
│ │ ├── keybinds/
│ │ │ └── module.lua
│ │ ├── latex/
│ │ │ └── renderer/
│ │ │ └── module.lua
│ │ ├── links/
│ │ │ └── module.lua
│ │ ├── looking-glass/
│ │ │ └── module.lua
│ │ ├── neorgcmd/
│ │ │ ├── commands/
│ │ │ │ └── return/
│ │ │ │ └── module.lua
│ │ │ └── module.lua
│ │ ├── pivot/
│ │ │ └── module.lua
│ │ ├── presenter/
│ │ │ └── module.lua
│ │ ├── promo/
│ │ │ └── module.lua
│ │ ├── qol/
│ │ │ ├── toc/
│ │ │ │ └── module.lua
│ │ │ └── todo_items/
│ │ │ └── module.lua
│ │ ├── queries/
│ │ │ └── native/
│ │ │ └── module.lua
│ │ ├── scanner/
│ │ │ └── module.lua
│ │ ├── storage/
│ │ │ └── module.lua
│ │ ├── summary/
│ │ │ └── module.lua
│ │ ├── syntax/
│ │ │ └── module.lua
│ │ ├── tangle/
│ │ │ └── module.lua
│ │ ├── tempus/
│ │ │ └── module.lua
│ │ ├── text-objects/
│ │ │ └── module.lua
│ │ ├── todo-introspector/
│ │ │ └── module.lua
│ │ ├── ui/
│ │ │ ├── calendar/
│ │ │ │ ├── module.lua
│ │ │ │ └── views/
│ │ │ │ └── monthly/
│ │ │ │ └── module.lua
│ │ │ ├── module.lua
│ │ │ ├── selection_popup/
│ │ │ │ └── module.lua
│ │ │ └── text_popup/
│ │ │ └── module.lua
│ │ └── upgrade/
│ │ └── module.lua
│ └── tests/
│ └── init.lua
├── neorg-scm-1.rockspec
├── nix/
│ ├── checks/
│ │ └── default.nix
│ ├── overlays/
│ │ ├── default.nix
│ │ ├── installed-dependencies.nix
│ │ ├── lib.nix
│ │ └── luarc.nix
│ ├── packages/
│ │ ├── default.nix
│ │ └── integration-test.nix
│ └── shells/
│ └── default.nix
├── queries/
│ ├── norg/
│ │ ├── folds.scm
│ │ ├── highlights.scm
│ │ └── injections.scm
│ └── norg_meta/
│ ├── highlights.scm
│ └── indents.scm
├── res/
│ ├── deps.json
│ └── wiki/
│ └── static/
│ ├── Cookbook.md
│ ├── Dependencies.md
│ ├── Kickstart.md
│ ├── Philosophy.md
│ ├── Setup-Guide.md
│ └── Tutorial.md
└── stylua.toml
================================================
FILE CONTENTS
================================================
================================================
FILE: .busted
================================================
return {
_all = {
coverage = false,
lpath = "lua/?.lua;lua/?/init.lua",
pattern = "tests%.lua$",
lua = "nlua",
ROOT = { "lua/" },
},
default = {
verbose = true,
},
tests = {
verbose = true,
},
}
================================================
FILE: .envrc
================================================
use flake . -Lv
================================================
FILE: .github/CODEOWNERS
================================================
# global rule
* @vhyrro @benlubas
================================================
FILE: .github/FUNDING.yml
================================================
# These are supported funding model platforms
open_collective: 'neorg' # Replace with a single Open Collective username
github: [ 'vhyrro', 'danymat' ] # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]
ko_fi: # Replace with a single Ko-fi username
tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
issuehunt: # Replace with a single IssueHunt username
otechie: # Replace with a single Otechie username
custom: [ 'https://buymeacoffee.com/vhyrro' ]
================================================
FILE: .github/ISSUE_TEMPLATE/bug_report.yml
================================================
name: Bug Report
description: Report a problem in Neorg
labels: [bug]
body:
- type: checkboxes
id: faq-prerequisite
attributes:
label: Prerequisites
options:
- label: I am using the latest stable release of Neovim
required: true
- label: I am using the latest version of the plugin
required: true
- type: input
attributes:
label: "Neovim Version"
description: "`nvim --version`:"
validations:
required: true
- type: textarea
attributes:
label: "Neorg setup"
description: |
- Copy your entire "require("neorg").setup" function
validations:
required: true
- type: textarea
attributes:
label: "Actual behavior"
description: "A description of actual behavior. Extra points if it includes images or videos."
validations:
required: true
- type: textarea
attributes:
label: "Expected behavior"
description: "A description of the behavior you expected."
validations:
required: true
- type: textarea
attributes:
label: "Steps to reproduce"
description: "Please describe how we can reproduce the issue."
validations:
required: true
- type: textarea
attributes:
label: "Potentially conflicting plugins"
description: "Other plugins you are using which you think could potentially be conflicting with neorg."
- type: textarea
attributes:
label: "Other information"
description: "Other information that could be helpful with debugging."
- type: dropdown
id: help
attributes:
label: "Help"
description: "Would you be able to resolve this issue by submitting a pull request?"
options:
- "Yes"
- "Yes, but I don't know how to start. I would need guidance (check question below)"
- "No"
- type: textarea
attributes:
label: "Implementation help"
description: "If you selected yes in the last question please specify what you would need help with in order to resolve the issue."
================================================
FILE: .github/ISSUE_TEMPLATE/config.yml
================================================
contact_links:
- name: Ask a question
url: https://github.com/vhyrro/neorg/discussions
about: If you need help with configuration or something else
================================================
FILE: .github/ISSUE_TEMPLATE/feature_request.yml
================================================
name: Feature request
description: Request a feature for Neorg
labels: [feature]
body:
- type: checkboxes
id: issue-prerequisite
attributes:
label: Issues
options:
- label: I have checked [existing issues](https://github.com/vhyrro/neorg/issues?q=is%3Aissue) and there are no existing ones with the same request.
required: true
- type: textarea
attributes:
label: "Feature description"
validations:
required: true
- type: dropdown
id: help
attributes:
label: "Help"
description: "Would you be able to implement this by submitting a pull request?"
options:
- "Yes"
- "Yes, but I don't know how to start. I would need guidance"
- "No"
validations:
required: true
- type: textarea
attributes:
label: "Implementation help"
description: "If you selected yes in the last question please specify in detail what you would need help with in order to implement this."
validations:
required: false
================================================
FILE: .github/workflows/checks.yml
================================================
name: "Codebase Checks"
# This workflow runs various checks (type checking, code checks)
# to ensure that Neorg is not breaking.
on:
push:
pull_request:
workflow_dispatch:
jobs:
integration-test:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- uses: DeterminateSystems/nix-installer-action@v17
- name: Run Checks
run: nix flake check -L
================================================
FILE: .github/workflows/gendoc.yml
================================================
name: Automatically Generate Documentation
on:
push:
branches:
- main
jobs:
generate-documentation:
strategy:
fail-fast: false
name: Generate Markdown Docs
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- name: Install Plenary
uses: actions/checkout@v4
with:
repository: nvim-lua/plenary.nvim
path: plenary.nvim
- name: Install Treesitter
uses: actions/checkout@v4
with:
repository: nvim-treesitter/nvim-treesitter
path: nvim-treesitter
ref: v0.9.3
- name: Install Neovim
uses: rhysd/action-setup-vim@v1
id: neovim
with:
neovim: true
version: v0.10.4
- uses: luarocks/gh-actions-lua@v10
with:
luaVersion: "luajit-2.1.0-beta3"
- uses: luarocks/gh-actions-luarocks@v5
with:
luarocksVersion: "3.12.0"
- name: Install all required modules
run: |
luarocks config lua_version 5.1
luarocks install lua-utils.nvim 1.0.2
luarocks install nui.nvim 0.3.0
luarocks install nvim-nio 1.10.1
luarocks install pathlib.nvim 2.2.3
luarocks install plenary.nvim 0.1.4
- name: Clone Wiki
uses: actions/checkout@v4
with:
repository: "nvim-neorg/neorg.wiki"
path: wiki/
- name: Run Documentation Generator
run: |
if ls wiki/*.md 1> /dev/null 2>&1; then
rm wiki/*.md
fi
make documentation
- name: Commit Wiki Changes
run: |
cd wiki/
git config --local user.email "41898282+github-actions[bot]@users.noreply.github.com"
git config --local user.name "github-actions[bot]"
if [[ ! -z $(git status -s) ]]; then
git add .
git commit -m "chore: autoupdate github wiki"
fi
- name: Push Wiki to Github
uses: ad-m/github-push-action@master
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
repository: "nvim-neorg/neorg.wiki"
branch: master
force: true
directory: ./wiki
================================================
FILE: .github/workflows/integration_tests.yml
================================================
name: "Nix-based Integration Test"
# This workflow attempts to install Neorg with a kickstart config on all major OSes.
# Uses Nix for reproducibility.
on:
push:
pull_request:
workflow_dispatch:
jobs:
integration-test:
runs-on: ${{ matrix.os.host }}
strategy:
matrix:
os:
- host: ubuntu-latest
# - host: windows-2019
- host: macos-26-intel # x86_64
- host: macos-latest # aarch64
steps:
- uses: actions/checkout@v4
- uses: DeterminateSystems/nix-installer-action@v17
- name: Run Checks
run: nix run .#integration-test
================================================
FILE: .github/workflows/luarocks.yml
================================================
name: Push to Luarocks
on:
push:
branches:
- main
jobs:
luarocks-upload:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0 # Required to count the commits
- name: Get Version
run: echo "LUAROCKS_VERSION=$(git describe --abbrev=0 --tags)" >> $GITHUB_ENV
- name: LuaRocks Upload
uses: nvim-neorocks/luarocks-tag-release@v7
env:
LUAROCKS_API_KEY: ${{ secrets.LUAROCKS_API_KEY }}
with:
version: ${{ env.LUAROCKS_VERSION }}
test_interpreters: ""
dependencies: |
nvim-nio ~> 1.7
lua-utils.nvim == 1.0.2
plenary.nvim == 0.1.4
nui.nvim == 0.3.0
pathlib.nvim ~> 2.2
nvim-treesitter-legacy-api == 0.9.2
================================================
FILE: .github/workflows/semver.yml
================================================
name: Release Please Automatic Semver
on:
push:
branches:
- main
jobs:
release:
name: release
runs-on: ubuntu-24.04
steps:
- uses: googleapis/release-please-action@v4
with:
release-type: simple
package-name: neorg
================================================
FILE: .github/workflows/sponsors.yml
================================================
name: Generate Sponsors README
on:
workflow_dispatch:
schedule:
- cron: 30 15 * * 0-6
jobs:
deploy:
runs-on: ubuntu-24.04
steps:
- name: Checkout 🛎️
uses: actions/checkout@v4
- name: Generate Sponsors 💖
uses: JamesIves/github-sponsors-readme-action@v1
with:
token: ${{ secrets.GH_SPONSORS_TOKEN }}
file: 'README.md'
template: '<a href="https://github.com/{{{ login }}}"><img src="https://github.com/{{{ login }}}.png" width="60px" alt="{{{ login }}}" /></a> '
- name: Commit to repository
uses: stefanzweifel/git-auto-commit-action@v6
with:
commit_message: "docs(README): update sponsors list"
================================================
FILE: .github/workflows/stylua.yml
================================================
name: Formatting
on:
push:
branches: [ "main" ]
paths-ignore:
- ".github/**"
- "**.md"
- "**.norg"
jobs:
format-with-stylua:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- name: Cache cargo modules
id: cache-cargo
uses: actions/cache@v4
env:
cache-name: cache-node-modules
with:
path: ~/.cargo
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/Cargo.toml') }}
restore-keys: |
${{ runner.os }}-build-${{ env.cache-name }}-
${{ runner.os }}-build-
${{ runner.os }}-
- name: Install cargo
run: curl https://sh.rustup.rs -sSf | sh -s -- -y
- name: Install stylua
run: cargo install stylua --features lua52
- name: Run formatting
run: stylua -v --verify .
- uses: stefanzweifel/git-auto-commit-action@v6
with:
commit_message: "chore: autoformat with stylua"
branch: ${{ github.ref }}
- name: Push changes
uses: ad-m/github-push-action@master
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
branch: ${{ github.ref }}
================================================
FILE: .github/workflows/tests.yml
================================================
name: Run tests
on:
pull_request: ~
push:
branches:
- main
jobs:
build:
name: Run tests
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- name: Run tests
uses: nvim-neorocks/nvim-busted-action@v1
with:
nvim_version: stable
================================================
FILE: .github/workflows/version_in_code.yml
================================================
name: Update Version String in Neorg Code
on:
workflow_run:
workflows: ["Release Please Automatic Semver"]
branches: [main]
types:
- completed
jobs:
release:
name: release
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Update Version String
run: |
latest_tag=$(git describe --abbrev=0 --tags)
echo "Updating Neorg Version to $latest_tag"
sed -ri "s/\sversion\s*=\s*\"[0-9]+\.[0-9]+\.[0-9]+\",$/ version = \"${latest_tag:1}\",/" lua/neorg/core/config.lua
- name: Commit Changes
run: |
git config --local user.email "41898282+github-actions[bot]@users.noreply.github.com"
git config --local user.name "github-actions[bot]"
if [[ ! -z $(git status -s) ]]; then
git add .
git commit -m "chore(config.lua): update version variable"
fi
- name: Push to Github
uses: ad-m/github-push-action@master
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
repository: "nvim-neorg/neorg"
branch: main
================================================
FILE: .gitignore
================================================
/wiki/
/luarocks
/lua_modules
/.luarocks
/.luarc.json
test.norg
# direnv
.direnv
# pre-commit
.pre-commit-config.yaml
================================================
FILE: .luacheckrc
================================================
-- Global objects
globals = {
"_",
"vim",
"neorg",
"log",
"_neorgcmd_generate_completions",
"_neorg_indent_expr",
"_neorg_module_autocommand_triggered"
}
std = "max+busted"
ignore = {
"631", -- max_line_length
}
-- Don't report unused self arguments of methods.
self = false
================================================
FILE: .styluaignore
================================================
ldoc/
================================================
FILE: CHANGELOG.md
================================================
# Changelog
## [9.4.0](https://github.com/nvim-neorg/neorg/compare/v9.3.0...v9.4.0) (2025-12-03)
### Features
* export ranged table tag correctly in core.export.markdown ([#1697](https://github.com/nvim-neorg/neorg/issues/1697)) ([233fe1d](https://github.com/nvim-neorg/neorg/commit/233fe1d85754c6cf59245257354afc9a2429911e))
* foldable lists and ranged verbatim ([#1690](https://github.com/nvim-neorg/neorg/issues/1690)) ([431de0a](https://github.com/nvim-neorg/neorg/commit/431de0a233ce5ab86da4b4e03786d6fe568daf62))
* **todo_items:** configurable parent update behavior ([91db472](https://github.com/nvim-neorg/neorg/commit/91db472c7f65a1a8f7fdc461e0fb040f565a95c4))
* winfixwidth for toc ([1dd99ed](https://github.com/nvim-neorg/neorg/commit/1dd99edd73c48196f7fa9ec763089fb774cf5499))
### Bug Fixes
* **ci:** typo in gendoc workflow ([9d75ae8](https://github.com/nvim-neorg/neorg/commit/9d75ae8e2625db240636870dd7f029c9a82ab9ef))
* **ci:** update actions version ([7cac123](https://github.com/nvim-neorg/neorg/commit/7cac12395b06f549b434e9f829ff6389da598e0c))
* **ci:** update Ubuntu runner version ([f720f55](https://github.com/nvim-neorg/neorg/commit/f720f55ba2057956f585f3c19e5dedd639982d53))
* **ci:** use `macos-13` to run integration tests on Intel macOS, `macos-11` has been deprecated a long time ago ([a849204](https://github.com/nvim-neorg/neorg/commit/a8492049c2cfb9fcabe511eb2a883a602777acb0))
* **clipboard:** yank to use correct regtype instead of always 'line-wise' ([de0bf99](https://github.com/nvim-neorg/neorg/commit/de0bf99a95f4053862f0e63c8083b5e14f3ad6ec))
* compatibility with nvim-treesitter main branch ([87242d4](https://github.com/nvim-neorg/neorg/commit/87242d458d7d0bb50532b791892fb1251a4e7293))
* **esupports.indent:** keep indentation of verbatim blocks without an injected TS parser ([#1685](https://github.com/nvim-neorg/neorg/issues/1685)) ([aa35325](https://github.com/nvim-neorg/neorg/commit/aa353253aeacf01464a8214373b64ec500571a45))
* **journal:** journal index generation ([#1680](https://github.com/nvim-neorg/neorg/issues/1680)) ([35da593](https://github.com/nvim-neorg/neorg/commit/35da593c55d78086a3203ee3e6d749fafe2e4e73))
* load buffer before parsing with TS ([#1689](https://github.com/nvim-neorg/neorg/issues/1689)) ([8fdd9b2](https://github.com/nvim-neorg/neorg/commit/8fdd9b2986acfb4ce310bebfc338111793862f00))
* replace deprecated `vim.tbl_islist` with `vim.islist` ([#1723](https://github.com/nvim-neorg/neorg/issues/1723)) ([1ebab96](https://github.com/nvim-neorg/neorg/commit/1ebab969b45520b680516ffffced1b7719355ed8))
* **rockspec:** add `nvim-treesitter-legacy-api` dependency ([208f7ca](https://github.com/nvim-neorg/neorg/commit/208f7ca7f6a9fa97fa049ae17cc1046ae509811f))
* **todo_items:** update parent node when child state is changed ([4b8e64a](https://github.com/nvim-neorg/neorg/commit/4b8e64a1dd919c934a200f28873eb5be84c5d9fa))
* **todo-instrospector:** use combine hl_mode ([#1733](https://github.com/nvim-neorg/neorg/issues/1733)) ([c429af2](https://github.com/nvim-neorg/neorg/commit/c429af26352fc5194b24a4aa88fc5ecc406e23f9))
* ts module bug ([1f40253](https://github.com/nvim-neorg/neorg/commit/1f40253cda954f71a3c2a8f5a6f428a950e36cc8))
## [9.3.0](https://github.com/nvim-neorg/neorg/compare/v9.2.0...v9.3.0) (2025-03-29)
### Features
* **todo_items:** todo-changed event ([#1651](https://github.com/nvim-neorg/neorg/issues/1651)) ([5f0195d](https://github.com/nvim-neorg/neorg/commit/5f0195d99e21fc1db3d544f7473b34bf41740c16))
### Bug Fixes
* **docgen:** load buffers after opening them ([#1657](https://github.com/nvim-neorg/neorg/issues/1657)) ([18d1a18](https://github.com/nvim-neorg/neorg/commit/18d1a182720fba71ea286d9ce6c3e9970bf7ed51))
* expand tangle paths ([#1622](https://github.com/nvim-neorg/neorg/issues/1622)) ([10bf607](https://github.com/nvim-neorg/neorg/commit/10bf607f11ed94151fb5496e6127d8823d162a7e))
* iter_matches returns list of nodes now ([#1674](https://github.com/nvim-neorg/neorg/issues/1674)) ([a48166d](https://github.com/nvim-neorg/neorg/commit/a48166d3f5729d424ad39254351288944994f097))
* pin to 0.10.4 for doc gen ([#1676](https://github.com/nvim-neorg/neorg/issues/1676)) ([79ffd34](https://github.com/nvim-neorg/neorg/commit/79ffd346ca19af49197d9c1b45d0b902c32c3e14))
* Tangle should close fd for files ([#1618](https://github.com/nvim-neorg/neorg/issues/1618)) ([cd3056e](https://github.com/nvim-neorg/neorg/commit/cd3056eaf39a838b0a26438ff203bb3123c94aec))
* **tangle:** create missing dirs ([#1644](https://github.com/nvim-neorg/neorg/issues/1644)) ([e1b4bb4](https://github.com/nvim-neorg/neorg/commit/e1b4bb4ff144a953f802f665afdd9a7f7532014f))
* **tangle:** proper error handling for fs_close ([#1647](https://github.com/nvim-neorg/neorg/issues/1647)) ([1a4c20a](https://github.com/nvim-neorg/neorg/commit/1a4c20a5ed3dea4abae20e85d66b5f0f94c96f5b))
* tree-sitter-norg parser builds on MacOS ([#1587](https://github.com/nvim-neorg/neorg/issues/1587)) ([71cd029](https://github.com/nvim-neorg/neorg/commit/71cd0291a80be9b5258f5ec16fd6846d60623c29))
## [9.2.0](https://github.com/nvim-neorg/neorg/compare/v9.1.1...v9.2.0) (2025-01-22)
### Features
* automatically typed `module.required` dependencies ([#1537](https://github.com/nvim-neorg/neorg/issues/1537)) ([1985f2d](https://github.com/nvim-neorg/neorg/commit/1985f2d6f152622b0066f48ba8e39d157635dd38))
* **dirman:** dynamically set default workspace ([#1623](https://github.com/nvim-neorg/neorg/issues/1623)) ([29993a7](https://github.com/nvim-neorg/neorg/commit/29993a7bb8279ffa0ba473a3f393daa28c645825))
* **dirman:** in_workspace function ([#1615](https://github.com/nvim-neorg/neorg/issues/1615)) ([62671a7](https://github.com/nvim-neorg/neorg/commit/62671a7b03a1f38a6e5e03b006a9b6f8d804be0e))
* **esupports.hop:** Add tab drop as option for open_mode ([#1580](https://github.com/nvim-neorg/neorg/issues/1580)) ([c7ada78](https://github.com/nvim-neorg/neorg/commit/c7ada7881d7076a235b6323edcd81ae260affb41))
* **export:** copy to clipboard ([#1627](https://github.com/nvim-neorg/neorg/issues/1627)) ([1783928](https://github.com/nvim-neorg/neorg/commit/178392822c8c2ef0911458b7f43c980667784011))
* **introspector:** implement introspector customizability and improvements ([#1539](https://github.com/nvim-neorg/neorg/issues/1539)) ([fd11950](https://github.com/nvim-neorg/neorg/commit/fd11950048d111b837b9f615c5d023e79bd1af9a))
* **keybinds:** add back keybind "gO" for ToC ([#1633](https://github.com/nvim-neorg/neorg/issues/1633)) ([bed58f8](https://github.com/nvim-neorg/neorg/commit/bed58f884ecf9b0b5e855cebe26760bfadbc8f38))
* make journal methods public ([8b59db7](https://github.com/nvim-neorg/neorg/commit/8b59db79307037032c5f83fc79dff5741d6da869))
* support ranges in Neorg command, ([c04bd96](https://github.com/nvim-neorg/neorg/commit/c04bd96eeb3bed19f23d394bebb6193bcd5271da))
### Bug Fixes
* coq_nvim completion integration ([#1597](https://github.com/nvim-neorg/neorg/issues/1597)) ([488507b](https://github.com/nvim-neorg/neorg/commit/488507bb996f75ee29073f50dec32fa220867ca5))
* don't suggest leading chars for file completions ([ba35900](https://github.com/nvim-neorg/neorg/commit/ba35900b21921c439e676b063a79c8fad914eac9))
* intuitive default undone icon ([#1578](https://github.com/nvim-neorg/neorg/issues/1578)) ([13d1d54](https://github.com/nvim-neorg/neorg/commit/13d1d546684c83ba464adbf463a8a272c884e1e8))
* Neorg return to most recent file ([e5e797e](https://github.com/nvim-neorg/neorg/commit/e5e797e6eddcb6efb1d2c3fc2612b31ad9a76cef))
* **summary:** unpack summary category list ([#1637](https://github.com/nvim-neorg/neorg/issues/1637)) ([41aa380](https://github.com/nvim-neorg/neorg/commit/41aa3800cf5d30a5f90520c2a31b34727b443219))
* **toc:** only capture first detached modifier ([#1631](https://github.com/nvim-neorg/neorg/issues/1631)) ([399832e](https://github.com/nvim-neorg/neorg/commit/399832e5437de0cea5efb1d5428de03adc42cc79))
* **ToC:** only try to open when still in norg buffer ([#1549](https://github.com/nvim-neorg/neorg/issues/1549)) ([88dbab5](https://github.com/nvim-neorg/neorg/commit/88dbab5325ce07092ab7a38b160bc8e988830524))
* weird tangle file path logic ([#1604](https://github.com/nvim-neorg/neorg/issues/1604)) ([993f077](https://github.com/nvim-neorg/neorg/commit/993f077f0bff8faa68dbdb89ad95f67116b8007a))
## [9.1.1](https://github.com/nvim-neorg/neorg/compare/v9.1.0...v9.1.1) (2024-07-24)
### Bug Fixes
* non-functional toggling of sublists ([#1492](https://github.com/nvim-neorg/neorg/issues/1492)) ([169495c](https://github.com/nvim-neorg/neorg/commit/169495ca3ed67f919589499d20fa89bfea9e4de4))
## [9.1.0](https://github.com/nvim-neorg/neorg/compare/v9.0.3...v9.1.0) (2024-07-23)
### Features
* add `<LocalLeader>cm` keybind for code block magnification ([c52c00f](https://github.com/nvim-neorg/neorg/commit/c52c00f72c85d3ca258de623e40e64c3e552185a))
* **concealer:** properly display blockquotes, allow entities to set their own clear functions ([28bbefc](https://github.com/nvim-neorg/neorg/commit/28bbefcfce10a51d7d834c6b6c0f7229bc6b38e1))
### Bug Fixes
* **`:h neorg`:** remove `|example` blocks until parser is fixed ([a93190d](https://github.com/nvim-neorg/neorg/commit/a93190db5b804c7db7d2f8f4d1c7edf6414cbe39))
* `insert-date` not working in insert mode ([7af14b3](https://github.com/nvim-neorg/neorg/commit/7af14b30b6ce9321e5a399eb6eb491ad111b0cda))
* **concealer:** don't overflow folds into other, non-norg files ([19e4bea](https://github.com/nvim-neorg/neorg/commit/19e4beabdcd6080ececbd5ffcb7ecb50b1590461))
* **concealer:** properly render quotes ([08277bb](https://github.com/nvim-neorg/neorg/commit/08277bb5cf1b310d2527adcb0d613a8625c7b3d3))
* **concealer:** quote and list rendering bugs ([e292cf5](https://github.com/nvim-neorg/neorg/commit/e292cf5f3d19a8066e13928ff00efece10915124))
## [9.0.3](https://github.com/nvim-neorg/neorg/compare/v9.0.2...v9.0.3) (2024-07-19)
### Bug Fixes
* **keybinds:** fixed tempus insert date insert mode default keybind command ([87e55f3](https://github.com/nvim-neorg/neorg/commit/87e55f3727ad84ecc261f7236892f4dbec82efc1))
## [9.0.2](https://github.com/nvim-neorg/neorg/compare/v9.0.1...v9.0.2) (2024-07-17)
### Bug Fixes
* **keybinds:** correctly get keymap opts ([4a2f5b2](https://github.com/nvim-neorg/neorg/commit/4a2f5b2104169883131646f27ffaeb6af324b05a))
## [9.0.1](https://github.com/nvim-neorg/neorg/compare/v9.0.0...v9.0.1) (2024-07-16)
### Bug Fixes
* **metagen:** proper iteration on metadata fields ([#1518](https://github.com/nvim-neorg/neorg/issues/1518)) ([0306887](https://github.com/nvim-neorg/neorg/commit/0306887c0c6ea302e3a3fecbb36998793f4c27d5))
## [9.0.0](https://github.com/nvim-neorg/neorg/compare/v8.9.0...v9.0.0) (2024-07-16)
### ⚠ BREAKING CHANGES
* tangle files relative to norg file ([#1415](https://github.com/nvim-neorg/neorg/issues/1415))
* remove `traverse-link` and `traverse-heading` modes
* remove all references to `core.mode`
* remove `core.mode`
* move rest of modules to new keybind system
* move core.pivot to new keybind system
* migrate core.promo to new keybind system
* move esupports.hop to the new keybind schema
* move qol.todo_items to new keybind API
* keybind refactor, update core.itero to new changes
* make Neovim 0.10 a requirement for Neorg
* simplify code in preparation of lazy.nvim luarocks support
* remove `ftdetect` file as Neorg is now natively recognized by Neovim ([#1083](https://github.com/nvim-neorg/neorg/issues/1083))
### Features
* add `core.ui.calendar` to the default list of modules ([52a37e0](https://github.com/nvim-neorg/neorg/commit/52a37e01abe059c6431f744eab9f22626fb275c5))
* add descriptions to all Neorg keybinds ([a042515](https://github.com/nvim-neorg/neorg/commit/a042515bc832ecab6d47a18ffc2976ee72f4bc1b))
* add dotrepeat to all common commands ([6b49397](https://github.com/nvim-neorg/neorg/commit/6b49397f1e8bea2f19064012e392cd4b36e00d18))
* auto tangle ([#1413](https://github.com/nvim-neorg/neorg/issues/1413)) ([0f24e4a](https://github.com/nvim-neorg/neorg/commit/0f24e4a53b05328a0ae6496be9867ea5df7b7f40))
* **calendar:** unify exit keybind to always be `q` instead of a mix of `q`/`<Esc>` ([582d7b6](https://github.com/nvim-neorg/neorg/commit/582d7b616d9bdb5e2bbcba4ebd0e82f7fb9130e0))
* **completion:** allow custom completion engines ([04d201d](https://github.com/nvim-neorg/neorg/commit/04d201d56857073efecf79a8be29fae45b57ebeb))
* **docgen:** add default keybinds list ([d762f6d](https://github.com/nvim-neorg/neorg/commit/d762f6dd4cfc7f8337272582abf0459b4c85fe3b))
* **docgen:** add more links to sidebar ([5bef42a](https://github.com/nvim-neorg/neorg/commit/5bef42ab385e0d2da9e68a60e4ba484c583b9aa7))
* **health:** check for keybind clashes in checkhealth ([bbe4243](https://github.com/nvim-neorg/neorg/commit/bbe42438a90afd25a5d52b843ebbcc19d8476cef))
* **intergrations.otter:** update to use otter 2.0 ([1347eeb](https://github.com/nvim-neorg/neorg/commit/1347eebc8a0116524f17a7c33240ae782efb974e))
* keybind refactor, update core.itero to new changes ([3dd946a](https://github.com/nvim-neorg/neorg/commit/3dd946ae976ee45147a60eeb5174f0f951f04f94))
* **keybinds:** add `extend_preset` function ([4f09926](https://github.com/nvim-neorg/neorg/commit/4f0992643b42d544a442f6e1928bd5838e355bcd))
* **keybinds:** don't try to forcefully override user keys ([591b883](https://github.com/nvim-neorg/neorg/commit/591b8831587895b95cbce30ad5a30c53f01b882c))
* **keybinds:** split presets into norg and non-norg, move to buffer-local mappings instead ([113c21b](https://github.com/nvim-neorg/neorg/commit/113c21b2de4f68c150a5778ff754cdbbec04758f))
* support multi-line values in metagen ([#1514](https://github.com/nvim-neorg/neorg/issues/1514)) ([321c435](https://github.com/nvim-neorg/neorg/commit/321c435e96a738a32ba2376f7f8f27b401759236))
### Bug Fixes
* better formatting, properly handle complex keybind descriptions ([c087db0](https://github.com/nvim-neorg/neorg/commit/c087db0473b3d8363e31135ef42d1290994075e6))
* calendar not working with the latest breakages ([c659b09](https://github.com/nvim-neorg/neorg/commit/c659b0901bea4143667489ee2af4c78762fabc5c))
* **docgen:** beautify keybind output in <details> tag ([7a9d54c](https://github.com/nvim-neorg/neorg/commit/7a9d54c3c81bb1c403b3591cbc3b0cf27949fc6b))
* **docgen:** better mnemonic rendering ([b3bf963](https://github.com/nvim-neorg/neorg/commit/b3bf9639d2ebc905f7a99197844bf6da0547a2c9))
* **docgen:** broken wiki ([e23d0d3](https://github.com/nvim-neorg/neorg/commit/e23d0d32ea11d13c9da67b841a809b6cfda02887))
* **docgen:** display keybind data in the form of a dropdown ([572de72](https://github.com/nvim-neorg/neorg/commit/572de724159fcf929f3feb125da72b25ccad7bd2))
* **docgen:** invalid github markdown ([75edcdc](https://github.com/nvim-neorg/neorg/commit/75edcdc68ba9ce4aae5f0df6543f9818c55c5206))
* error in hasmapto() ([dfcc78a](https://github.com/nvim-neorg/neorg/commit/dfcc78a110051aaedef8c19b48fda486960e1089))
* feed keys without remaps ([ecf5f41](https://github.com/nvim-neorg/neorg/commit/ecf5f415c96cf7a12b74a8233b8f6d4ecc3779c4))
* improve startup time by removing pcall on every module load ([7d9bd33](https://github.com/nvim-neorg/neorg/commit/7d9bd33a176fa86c65030776eb9b45cdb729250b))
* itero keybind not functioning, add fallback functions to core.keybinds ([cd950aa](https://github.com/nvim-neorg/neorg/commit/cd950aa89ae2125882b235b8e79afde13c90e1b1))
* make core.promo keybinds functional again ([8a48172](https://github.com/nvim-neorg/neorg/commit/8a48172e94854d364b3cb3ecd2940cbe84b2f7bd))
* properly error when failing to load module using `:Neorg module load` ([721fd28](https://github.com/nvim-neorg/neorg/commit/721fd28f39ba2cb0978e410bd9a7668f8c74ccca))
* remove all references to `core.mode` ([53429c4](https://github.com/nvim-neorg/neorg/commit/53429c497bda64671c7161b3f59d4640415bf145))
* set global keybinds only once, set keys on filetype ([e00042a](https://github.com/nvim-neorg/neorg/commit/e00042af322802f4db38706c5eeee8e77145fe65))
* set keybinds for the appropriate buffer (fixes telescope issues) ([b49c214](https://github.com/nvim-neorg/neorg/commit/b49c214f72ba33d5d76a63f7d70da43c840dc1e2))
* tangle files relative to norg file ([#1415](https://github.com/nvim-neorg/neorg/issues/1415)) ([3c3b977](https://github.com/nvim-neorg/neorg/commit/3c3b977dff916aecf5b2d63747896691c70639df))
### Code Refactoring
* make Neovim 0.10 a requirement for Neorg ([c916501](https://github.com/nvim-neorg/neorg/commit/c91650128130f05c79a2cf1e981a8d87b1f91113))
* migrate core.promo to new keybind system ([faad665](https://github.com/nvim-neorg/neorg/commit/faad665a8e9c32f9dceae613e7c4c2abdbda9585))
* move core.pivot to new keybind system ([0c1222b](https://github.com/nvim-neorg/neorg/commit/0c1222b4aa4faf21a76158fe8de1339700442e08))
* move esupports.hop to the new keybind schema ([cdfbe19](https://github.com/nvim-neorg/neorg/commit/cdfbe19125a5d71288ea5c28f7916f709ca57ddd))
* move qol.todo_items to new keybind API ([b71d8ba](https://github.com/nvim-neorg/neorg/commit/b71d8ba34c53a0a4d022cd72af90513029800b27))
* move rest of modules to new keybind system ([94b860b](https://github.com/nvim-neorg/neorg/commit/94b860b704bceb1180eb82443064e6530e001fae))
* remove `core.mode` ([49e8710](https://github.com/nvim-neorg/neorg/commit/49e8710b3c09b19d69fcce322769fcbbdc4e6f30))
* remove `ftdetect` file as Neorg is now natively recognized by Neovim ([#1083](https://github.com/nvim-neorg/neorg/issues/1083)) ([5c32056](https://github.com/nvim-neorg/neorg/commit/5c320566757d334ab255a287da960d961d7a9012))
* remove `traverse-link` and `traverse-heading` modes ([da3e062](https://github.com/nvim-neorg/neorg/commit/da3e0621e03ad33f62cdd2fa77ba02ffb1b52d2b))
* simplify code in preparation of lazy.nvim luarocks support ([12b7cf2](https://github.com/nvim-neorg/neorg/commit/12b7cf253e60f6ce8552e4498a1598c8b57acf66))
## [8.9.0](https://github.com/nvim-neorg/neorg/compare/v8.8.1...v8.9.0) (2024-07-07)
### Features
* **calendar-ui:** new mappings ([2a4081f](https://github.com/nvim-neorg/neorg/commit/2a4081fe89f8f264c672eff2ab88b79f91aa6898))
* **calendar-ui:** support count in keymappings ([6b4751c](https://github.com/nvim-neorg/neorg/commit/6b4751c2c486578c8a11dfd2f79dfd35cacaa5b8))
* **calendar:** even more keybinds + ; repeat ([a5c2624](https://github.com/nvim-neorg/neorg/commit/a5c2624bc41cb760c4689734b2c3c5a9f17e4c48))
### Bug Fixes
* **promo:** promote/demote range + keybinds ([a94d1e6](https://github.com/nvim-neorg/neorg/commit/a94d1e67f7df3a97c0f57894c107b70a54523a4d))
* **return:** return causing early exit when paired with auto_toc.exit_nvim ([959b8a2](https://github.com/nvim-neorg/neorg/commit/959b8a20114c63097261cd1b48f2dacfbe4ccd5f))
* **summary:** ordering and indentation of nested entries ([9279672](https://github.com/nvim-neorg/neorg/commit/9279672d2b97929fc52d1b182af754497dfd8d8a))
* **text-objects:** node selection inconsistencies ([99b3249](https://github.com/nvim-neorg/neorg/commit/99b32492b836b64a5ff4544d4c466496f0aec9bd))
* **toc:** various fixes ([#1500](https://github.com/nvim-neorg/neorg/issues/1500)) ([83637f1](https://github.com/nvim-neorg/neorg/commit/83637f11295aaaa6db5b0a28d6db8ac727592759))
## [8.8.1](https://github.com/nvim-neorg/neorg/compare/v8.8.0...v8.8.1) (2024-06-26)
### Bug Fixes
* remove `tree-sitter-norg` from the luarocks dependency list momentarily (delegate work to nvim-treesitter for the moment) ([4103d43](https://github.com/nvim-neorg/neorg/commit/4103d43898f0a612f1b702c5a6d2ef1e7fb76058))
## [8.8.0](https://github.com/nvim-neorg/neorg/compare/v8.7.1...v8.8.0) (2024-06-25)
### Features
* **latex-renderer:** add toggle renderer command ([a00628f](https://github.com/nvim-neorg/neorg/commit/a00628f54f895774dde09e4d7a3c99eb8340cbb6))
* **toc:** auto open/enter ToC ([988c2c1](https://github.com/nvim-neorg/neorg/commit/988c2c197c9f431d338519a3b81825cc5690b4e4))
* **toc:** close toc when neorg win is closed ([78e1155](https://github.com/nvim-neorg/neorg/commit/78e1155b8c3cc3f63e98817b7eea85f84ca7f6af))
* **toc:** configurable max width ([b0544ed](https://github.com/nvim-neorg/neorg/commit/b0544ed42c3aa28ceb8edf54a3a71c777de91e5d))
* **toc:** exit nvim when toc is the last window ([baf9934](https://github.com/nvim-neorg/neorg/commit/baf9934832866d28762b59c7e52c82854366d7dd))
### Bug Fixes
* broken true-zen integration ([#1477](https://github.com/nvim-neorg/neorg/issues/1477)) ([ace1cda](https://github.com/nvim-neorg/neorg/commit/ace1cdae9d0a95083bf9bf8cfb5e70dbb38d6351))
* don't update metadata unless buffer is modified ([#1469](https://github.com/nvim-neorg/neorg/issues/1469)) ([286d94b](https://github.com/nvim-neorg/neorg/commit/286d94bf6e30be4a5fc7ce89aa860538d39189a0))
* **hop:** describe which links are currently unsupported instead of "not found" ([9626def](https://github.com/nvim-neorg/neorg/commit/9626def65687a052b0e2c390e9ee9ee599344415))
* insert template at the end of a new journal entry ([#1468](https://github.com/nvim-neorg/neorg/issues/1468)) ([f33a491](https://github.com/nvim-neorg/neorg/commit/f33a4919b3aa2744209d8106886879e5522a38a4))
* **latex-renderer:** fixed renderer breaking when a snippet change made it stop compiling ([7fc91bb](https://github.com/nvim-neorg/neorg/commit/7fc91bbc7c316e0ad33132fb61325adc71d4f260))
* **toc:** don't try to open a toc from a toc ([6cdd6a1](https://github.com/nvim-neorg/neorg/commit/6cdd6a121c113d15c2aa55d79b6ec9915cc47284))
* **toc:** open new win from toc when neorg win was closed ([c2d58da](https://github.com/nvim-neorg/neorg/commit/c2d58da7c4800e9b8cb5b5ed1a6f38cde1a176d7))
* **todo-introspector:** check that the buffer is valid ([369ed28](https://github.com/nvim-neorg/neorg/commit/369ed28b0b0c3f221b46816ad53a509d73c7e7ed))
## [8.7.1](https://github.com/nvim-neorg/neorg/compare/v8.7.0...v8.7.1) (2024-06-12)
### Bug Fixes
* **latex-renderer:** fixed renderer failing silently ([4b22a4e](https://github.com/nvim-neorg/neorg/commit/4b22a4ea798efeeb756a6df52baa369715832a5a))
## [8.7.0](https://github.com/nvim-neorg/neorg/compare/v8.6.0...v8.7.0) (2024-06-11)
### Features
* anchor completion ([9917f99](https://github.com/nvim-neorg/neorg/commit/9917f993c505c3ab7d122e253a3af7cf13820fd0))
* **completion:** additional detached modifier extensions ([6b02bf1](https://github.com/nvim-neorg/neorg/commit/6b02bf156d4cf1ded9b2bb93cb4669a00e6a1e7f))
* link name completions ([8ec38e0](https://github.com/nvim-neorg/neorg/commit/8ec38e07ddffa84d0925faf425d4d52e5c1f91b7))
* **treesitter:** add get_ts_parser ([5221820](https://github.com/nvim-neorg/neorg/commit/5221820166a9cfac67451581ea79a9e2e7680215))
* **treesitter:** get_document_root accepts more sources ([4ebb7c7](https://github.com/nvim-neorg/neorg/commit/4ebb7c7bd62d12b77f0a8a0ec27e2e64ef204d65))
### Bug Fixes
* **concealer:** invalidate extmarks when range is deleted ([51be069](https://github.com/nvim-neorg/neorg/commit/51be06957fc6cc7140b310abd30be6682041962a))
* foreign link completions with item ([8537710](https://github.com/nvim-neorg/neorg/commit/85377108531d4083c0526623023a35aab2509410))
* supress swap file errors ([4420ddc](https://github.com/nvim-neorg/neorg/commit/4420ddc26ab80b42d4735ec78efea39c7cc7f547))
* thoroughly test for current Neovim version ([352570c](https://github.com/nvim-neorg/neorg/commit/352570cb174c73d50a82376f06b05badb1cda338))
* **todo-items:** error when switching from on-hold item with children ([f03435f](https://github.com/nvim-neorg/neorg/commit/f03435f03b5649598fb1478429d4e985dc5789bb))
## [8.6.0](https://github.com/nvim-neorg/neorg/compare/v8.5.0...v8.6.0) (2024-05-31)
### Features
* add `integrations.coq_nvim` as a new completion engine ([b8f9f83](https://github.com/nvim-neorg/neorg/commit/b8f9f834d999a6807ee9476857fb3af2c58f64a2))
* create `deps.json` for a universal list of Neorg dependencies ([a64c6af](https://github.com/nvim-neorg/neorg/commit/a64c6af4ac1ab4aa3a5de93d86111814125e3ed8))
* **latex:** async image rendering ([b1c96a0](https://github.com/nvim-neorg/neorg/commit/b1c96a049da8d534820f7452195fc9d961f3d025))
* **latex:** minimum length to render ([5a9d638](https://github.com/nvim-neorg/neorg/commit/5a9d6381581014c67219a823f149ce871f3af15d))
* modify deps.json to have proper version constraints ([5e9a3ef](https://github.com/nvim-neorg/neorg/commit/5e9a3ef798726fd2001d1596e6134b03f331a333))
* treesitter-based completions ([#1412](https://github.com/nvim-neorg/neorg/issues/1412)) ([79f6a49](https://github.com/nvim-neorg/neorg/commit/79f6a49b869a891bca9ce746f77781af46977e71))
### Bug Fixes
* clear extmarks on disable ([1be7808](https://github.com/nvim-neorg/neorg/commit/1be78080714b6f0cc1d77432629b91328880ce53))
* clear images at cursor after change ([9edd802](https://github.com/nvim-neorg/neorg/commit/9edd802c194ef180587c9c836ea84142927bc887))
* clear package.loaded cache when first installing neorg ([3d50b49](https://github.com/nvim-neorg/neorg/commit/3d50b49e1c1d37182c2ed94e718ecd5eed8cacd4))
* compute image dimensions before rendering ([94abd99](https://github.com/nvim-neorg/neorg/commit/94abd999cbb21d66080ee3970f41303c7093e1a6))
* conceal cursor updates ([2701e07](https://github.com/nvim-neorg/neorg/commit/2701e0770697ca10665277c0afd692567b24103d))
* **dirman:** swapfile error when opening index.norg ([#1451](https://github.com/nvim-neorg/neorg/issues/1451)) ([70d4b89](https://github.com/nvim-neorg/neorg/commit/70d4b899928d72ec9ab7961f69ae47fd24b8c3c4))
* handle switching buffers ([af4001e](https://github.com/nvim-neorg/neorg/commit/af4001ebd8678261e334591be4435f11e1aac294))
* image flashing on text change ([19737b0](https://github.com/nvim-neorg/neorg/commit/19737b02be7aee6c4395439fbd756901adb428a1))
* **latex-renderer:** handle broken latex ([#1438](https://github.com/nvim-neorg/neorg/issues/1438)) ([8140135](https://github.com/nvim-neorg/neorg/commit/81401353dc13ff87f4879b6e0b5f96ff2de14d9c))
* **latex:** predict image size for scale > 1 ([bde2402](https://github.com/nvim-neorg/neorg/commit/bde24023d2b1ae507034c0839144f36e96dc7dc2))
* limages losing track of their extmarks ([f05bce2](https://github.com/nvim-neorg/neorg/commit/f05bce247e53a53a19bfe47c57d6bc8023b5c43b))
* logic when inline = false ([fc8c054](https://github.com/nvim-neorg/neorg/commit/fc8c0542d8676155e8c47d0b735e816a366235b1))
* mark core.links as internal ([22e7151](https://github.com/nvim-neorg/neorg/commit/22e7151f02559cea0320d02b57e59d2fb8294956))
* render images on cursor line on enable ([dc51ff4](https://github.com/nvim-neorg/neorg/commit/dc51ff489a653c292c6bf84751a5d060e8018c6c))
* rendering order for multiple img in one line ([a50c034](https://github.com/nvim-neorg/neorg/commit/a50c03432ba9cd4c370ebedfa6d84db1f0e61b6d))
* **text-objects:** nil check node's parent ([72da6e0](https://github.com/nvim-neorg/neorg/commit/72da6e0773298356f5a83ce52c9efdd88d4147e5))
* use nio.scheduler to avoid double wrap ([2a9c3fa](https://github.com/nvim-neorg/neorg/commit/2a9c3fab1bb6beabc4160264835be7f3b9a579e7))
* various type errors in codebase ([c564e6c](https://github.com/nvim-neorg/neorg/commit/c564e6cd470e1582414b63720ef85f1d0abe1d64))
* virt text disapearing on conceallevel=0 ([acd4293](https://github.com/nvim-neorg/neorg/commit/acd4293ab269c42eb9f3294d182eb87e7a34d66b))
* work on one buffer at a time ([ba41187](https://github.com/nvim-neorg/neorg/commit/ba41187669002622b7f9778e4c49723f47faf69a))
### Reverts
* d8ba19a18c896cc146e7ecbd4d67bdbe03f2e0c4 ([c8e2947](https://github.com/nvim-neorg/neorg/commit/c8e2947bdb71838ce90614cb3d9a0eb530c45fd7))
## [8.5.0](https://github.com/nvim-neorg/neorg/compare/v8.4.1...v8.5.0) (2024-05-17)
### Features
* text-objects and working swap ([#1421](https://github.com/nvim-neorg/neorg/issues/1421)) ([49a3c64](https://github.com/nvim-neorg/neorg/commit/49a3c64c06dae55b5424b218dc7c6e6b643fd4f5))
### Bug Fixes
* **core.todo-introspector:** treesitter highlighter errors ([cb4f25b](https://github.com/nvim-neorg/neorg/commit/cb4f25bca799c49a81e471aeca1d6d95322c87a6))
## [8.4.1](https://github.com/nvim-neorg/neorg/compare/v8.4.0...v8.4.1) (2024-04-13)
### Bug Fixes
* **checkhealth:** add missing parameter to string.format ([#1386](https://github.com/nvim-neorg/neorg/issues/1386)) ([9656757](https://github.com/nvim-neorg/neorg/commit/9656757f7085e9e36d2469b8876f6b27f8e87c7b))
* lack of comma ([65c7550](https://github.com/nvim-neorg/neorg/commit/65c75508626ad02a3cb40a84c4c3df0cde7b0e5a))
* properly check for existence of a given module by trying to load it instead of passively scanning the loaded module list ([727ef2a](https://github.com/nvim-neorg/neorg/commit/727ef2ab4247b52733d1a84d87143257e783d4e9))
## [8.4.0](https://github.com/nvim-neorg/neorg/compare/v8.3.0...v8.4.0) (2024-04-04)
### Features
* add `integrations.otter` for LSP-like behaviours in code blocks ([#1329](https://github.com/nvim-neorg/neorg/issues/1329)) ([ccb7555](https://github.com/nvim-neorg/neorg/commit/ccb75557f8582e044c687452b8b249151f6e7098))
### Bug Fixes
* broken wiki ([68ea6b5](https://github.com/nvim-neorg/neorg/commit/68ea6b53b6cb58c54ac51256cdfd76eec540806c))
* don't load `core.todo-introspector` if not on nightly (oops) ([bc7830e](https://github.com/nvim-neorg/neorg/commit/bc7830ec3e538d381f5361ca80a9bc5f97fc8fa9))
## [8.3.0](https://github.com/nvim-neorg/neorg/compare/v8.2.1...v8.3.0) (2024-04-04)
### Features
* basic checkhealth for configuration checking ([645cd0c](https://github.com/nvim-neorg/neorg/commit/645cd0c257b2fccc655a32d0b04aa706c96fb1a8))
* check for the existence of `vhyrro/luarocks.nvim` ([a5aa931](https://github.com/nvim-neorg/neorg/commit/a5aa93108999de75c8d075a0ee4dcc6a715a9e1a))
* **dirman:** use pathlib for all dirman operations ([#1354](https://github.com/nvim-neorg/neorg/issues/1354)) ([1190dc7](https://github.com/nvim-neorg/neorg/commit/1190dc78b9785ad75301de9153ed8de83c179b66))
* implement the basics of the new todo introspector ([a7ad515](https://github.com/nvim-neorg/neorg/commit/a7ad51519f2e7a7274c069e35d4396a0a5f88ddc))
* **todo-introspector:** correctly enumerate amounts of done/undone items ([d284488](https://github.com/nvim-neorg/neorg/commit/d2844882ec0d18d59a7b8727b893a964fe76a754))
* **todo-introspector:** display all TODOs on file entry ([80b2d33](https://github.com/nvim-neorg/neorg/commit/80b2d33b1f402b0279009442caf6cfaa9cd308f4))
* **todo-introspector:** finalize display code ([949ae96](https://github.com/nvim-neorg/neorg/commit/949ae962558d43673130159cd6bce89e4bf4febc))
* **todo-introspector:** properly handle nodes broken into two ([76e6443](https://github.com/nvim-neorg/neorg/commit/76e6443c9823470897245951f37cef0cc5b966f0))
### Bug Fixes
* add `core.todo-introspector` to the list of default modules ([5202271](https://github.com/nvim-neorg/neorg/commit/52022710d47fd66c73280f7a8d7fe2013d899224))
* **checkhealth:** fix erroneous boolean check for lazy users ([d523688](https://github.com/nvim-neorg/neorg/commit/d523688ecc6ddf5fbac9b42e0b62515c7655bed3))
* **dirman:** norg link with `.` was misinterpreted as the extension ([96fe2c9](https://github.com/nvim-neorg/neorg/commit/96fe2c92d0e8fb2a2a853847909155aae4d5ca46))
* **dirman:** respect force option in dirman create_file ([0782ca4](https://github.com/nvim-neorg/neorg/commit/0782ca4a221cfd965f05752d7178b2692bb64ae0))
* **introspector:** various bugs related to extmark updates ([e8c9193](https://github.com/nvim-neorg/neorg/commit/e8c9193b10ea946e6f90e06daf0efeafb55fa970))
* issue a warning to users when dependencies cannot be found (instead of silently failing) ([04f4127](https://github.com/nvim-neorg/neorg/commit/04f4127a08a59d110c882464b11294dec0cf1258))
* **luarocks:** pin `pathlib` to `2.0` (as luarocks doesn't like it otherwise) ([5b93840](https://github.com/nvim-neorg/neorg/commit/5b93840d97c2ac0d1534321ca3659f4b8c1342e4))
* **pathlib:** bump pathlib version; fix `path:touch` ([bedbbe2](https://github.com/nvim-neorg/neorg/commit/bedbbe208e61491d1d8be0b6775793b246b444d0))
* **todo-introspector:** correctly handle deletion of lines ([a8b7ad0](https://github.com/nvim-neorg/neorg/commit/a8b7ad08f6e8cd36c83e371ab9a74cc1e5252a0b))
* **todo-introspector:** do not error when a line out of bounds is deleted ([62c7925](https://github.com/nvim-neorg/neorg/commit/62c7925e17ab25cc40c50cd266701a36aa854a50))
* **todo-introspector:** properly clear namespace for refreshed buffers ([5f67407](https://github.com/nvim-neorg/neorg/commit/5f6740795303a03b58c81bf6396ae03d487d5b7c))
### Reverts
* backout of commit 5b93840d97c2ac0d1534321ca3659f4b8c1342e4 ([e0690fa](https://github.com/nvim-neorg/neorg/commit/e0690fa65546bd91f9aa4883f1ce4cbea45e1898))
## [8.2.1](https://github.com/nvim-neorg/neorg/compare/v8.2.0...v8.2.1) (2024-03-28)
### Bug Fixes
* **core.neorgcmd.list:** don't accidentally open a separate file when displaying loaded modules ([eef1705](https://github.com/nvim-neorg/neorg/commit/eef1705ee78ae6e66917901da507a666743de877))
* don't allow TODOs with nested items of the same type to be given the pending status ([5942fdf](https://github.com/nvim-neorg/neorg/commit/5942fdf7eb42b6364ca0a754ac88bd0ca05ae660))
* load default modules even if an empty table is provided as input to setup() ([c1d36ad](https://github.com/nvim-neorg/neorg/commit/c1d36add07364e024dbf39276388741e54f7e955))
* **neorgcmd.modules.list:** add basic escape keybinds ([71e2f05](https://github.com/nvim-neorg/neorg/commit/71e2f05ee19c94705fadbc1f84e11990baf8ff1c))
* **typecheck:** use type definitions from nvim runtime instead ([#1358](https://github.com/nvim-neorg/neorg/issues/1358)) ([e7f393f](https://github.com/nvim-neorg/neorg/commit/e7f393f9e4a17c32289875e273f687863336894c))
## [8.2.0](https://github.com/nvim-neorg/neorg/compare/v8.1.0...v8.2.0) (2024-03-25)
### Features
* **metagen:** add author field to provide persistent custom author name ([#1331](https://github.com/nvim-neorg/neorg/issues/1331)) ([e576308](https://github.com/nvim-neorg/neorg/commit/e576308243b58838ed97309bec60bf180cde3c91))
### Bug Fixes
* **ci:** "could not find upvalue `lib`" error ([486a148](https://github.com/nvim-neorg/neorg/commit/486a148d1bf5b7fd14f52a771a0dacc1e6839174))
* **ci:** supply correct version to the lua setup CI ([c814ef6](https://github.com/nvim-neorg/neorg/commit/c814ef68295baffefed7bfb8a48f8835f73a55a6))
* **core/events:** fall back to the current window ID if it cannot be located ([22df349](https://github.com/nvim-neorg/neorg/commit/22df349df39d9401a95f7dc0e3dc13113f91a60a))
* **dirman:** properly escape directories and filenames ([#1232](https://github.com/nvim-neorg/neorg/issues/1232)) ([e1f5556](https://github.com/nvim-neorg/neorg/commit/e1f5556bfbe50cbae262dffc35f376f7469f68cf))
* do not add the line jump of a link to the jump list ([#1325](https://github.com/nvim-neorg/neorg/issues/1325)) ([918f2a3](https://github.com/nvim-neorg/neorg/commit/918f2a39f96e1447c00871eb611bed2018a047b5))
* **export.markdown:** export `authors` metadata field key as `author` ([#1319](https://github.com/nvim-neorg/neorg/issues/1319)) ([f30ce72](https://github.com/nvim-neorg/neorg/commit/f30ce728e1b99e23320114c3bddb18be2776baf7))
* **export.markdown:** fix incorrect reset of ordered list item count ([#1324](https://github.com/nvim-neorg/neorg/issues/1324)) ([ba58c1b](https://github.com/nvim-neorg/neorg/commit/ba58c1b29c9b013928025db345c6ff170e9693bf))
## [8.1.0](https://github.com/nvim-neorg/neorg/compare/v8.0.1...v8.1.0) (2024-03-24)
### Features
* **todo_items:** convert TODO item to "on hold" if all items are done but the rest are on hold ([#1339](https://github.com/nvim-neorg/neorg/issues/1339)) ([c32b238](https://github.com/nvim-neorg/neorg/commit/c32b238438a8f1130c89c13a2284961fe10e3e68))
### Bug Fixes
* remove old and hacky code related to nvim-treesitter's query cache invalidation ([e8d8d1e](https://github.com/nvim-neorg/neorg/commit/e8d8d1e6608e53e366109fc4f9d7ab364ea0fb5c))
## [8.0.1](https://github.com/nvim-neorg/neorg/compare/v8.0.0...v8.0.1) (2024-03-24)
### Bug Fixes
* broken wiki on github ([d4c10fe](https://github.com/nvim-neorg/neorg/commit/d4c10fe58519ce0d827cfc02f87832c75395045a))
* **ci:** try to fix the wiki generator with luarocks ([27ac595](https://github.com/nvim-neorg/neorg/commit/27ac595d90481bd8fa2d13290289d46287346903))
* **docgen:** invalid upvalues ([84ee928](https://github.com/nvim-neorg/neorg/commit/84ee928cd91db8705111c3d485e2a38ca5de61ec))
* **luarocks:** add proper dependencies ([81328d1](https://github.com/nvim-neorg/neorg/commit/81328d17ed9d5509e7dea8f1efc0fa568535e0e0))
### Reverts
* return back old logger code ([a8151f1](https://github.com/nvim-neorg/neorg/commit/a8151f1e21445739c9574d5eba9f4c635688cf98))
## [8.0.0](https://github.com/nvim-neorg/neorg/compare/v7.0.0...v8.0.0) (2024-03-24)
### ⚠ BREAKING CHANGES
* use decoupled lua-utils instead of the regular neorg utils
* **lib:** deprecate `lib.map`
* deprecate `core.upgrade`
* **concealer:** simpler config for ordered list icon & multichar icon for unordered list ([#1179](https://github.com/nvim-neorg/neorg/issues/1179))
* **neorgcmd:** slowly move away from the deprecated `commands` directory
* **highlights:** updated default groups to match names in treesitter
### Features
* add basic build.lua ([efac9eb](https://github.com/nvim-neorg/neorg/commit/efac9eb8c16cfe5cd1a45705d2add4eca749e63f))
* add lua-utils.nvim to the list of required rocks ([b7b9eda](https://github.com/nvim-neorg/neorg/commit/b7b9edad6a852f33a2ce99051c748823dabd28cc))
* add new dependencies for norgopolis ([0e88310](https://github.com/nvim-neorg/neorg/commit/0e883108d8c782335615cf2108a703847a1295d9))
* add support for inline link targets ([132b73b](https://github.com/nvim-neorg/neorg/commit/132b73bfacd3014dc8afb56ddf7eed8c7acf6d6d))
* auto complete links ([#1295](https://github.com/nvim-neorg/neorg/issues/1295)) ([bd12dac](https://github.com/nvim-neorg/neorg/commit/bd12dacc9cf561cbffc8d6f8f4b76aa9d734665b))
* **concealer:** code block background `min_width` ([#1328](https://github.com/nvim-neorg/neorg/issues/1328)) ([efac835](https://github.com/nvim-neorg/neorg/commit/efac8350f4afe0b49f278129ef92ffb0a02d1c6f))
* **concealer:** simpler config for ordered list icon & multichar icon for unordered list ([#1179](https://github.com/nvim-neorg/neorg/issues/1179)) ([da74d14](https://github.com/nvim-neorg/neorg/commit/da74d14f217dc81bc364758bbecea3c5e934ba60))
* **concealer:** use empty foldmethod on nightly releases (for full folding passthrough) ([086891d](https://github.com/nvim-neorg/neorg/commit/086891d396ac9fccd91faf1520f563b6eb9eb942))
* **export.markdown:** option to export latex `embed` tags ([0abe7b7](https://github.com/nvim-neorg/neorg/commit/0abe7b737d35f2abd082bc6f694cf5a9fc166fb7))
* fix build.lua process (maybe once and for all?) ([eea6263](https://github.com/nvim-neorg/neorg/commit/eea6263ac4f3506d34d6e79839606e60b074757b))
* include plenary as a dependency ([6ea1eff](https://github.com/nvim-neorg/neorg/commit/6ea1eff15d3f1fa947255a94f99cadb298c8b66f))
* **keybinds:** add `opts` arg to `remap(_event)` ([27af839](https://github.com/nvim-neorg/neorg/commit/27af839eb6833f82765bc3066ab7e9b437233dd2))
* prepare neorg.core.lib for extraction ([c4eb7e9](https://github.com/nvim-neorg/neorg/commit/c4eb7e96ea1e2a0a4b6d47e6bda4f6816a908262))
* run sync-parsers as a build step ([9dd8331](https://github.com/nvim-neorg/neorg/commit/9dd8331bc1ad42117c7173cd5501b93570db85d5))
* **summary:** reimplement nested categories ([#1274](https://github.com/nvim-neorg/neorg/issues/1274)) ([6202285](https://github.com/nvim-neorg/neorg/commit/6202285214e70efe0d861c5a4969f8ee817bc985))
* undojoin timestamp updates ([#1272](https://github.com/nvim-neorg/neorg/issues/1272)) ([fe25e93](https://github.com/nvim-neorg/neorg/commit/fe25e93336b6a71b3cb3d7fd53ab6e4cb4a125c1))
* when absolutely no parameters are supplied, load Neorg with core.defaults ([b6fb57b](https://github.com/nvim-neorg/neorg/commit/b6fb57b723c02255a9d0c0f1a8fc957fe007d9c2))
### Bug Fixes
* **build.lua:** install dependencies instead of the actual plugin itself (prevent conflicts) ([da25527](https://github.com/nvim-neorg/neorg/commit/da2552769b572c012ff2f0ee9c11e3a26f061252))
* **build:** attempt to fix build script by deferring code execution ([fb45f83](https://github.com/nvim-neorg/neorg/commit/fb45f836da9dd43940c3fdd182e8255bbce9d9dc))
* bump version of `norgopolis-server` to 1.3.1 ([0d8a7ec](https://github.com/nvim-neorg/neorg/commit/0d8a7ecae258e15f40e88bc3b312d2b92192743f))
* **ci:** fix abs path to libs in luarc ([#1267](https://github.com/nvim-neorg/neorg/issues/1267)) ([0edde97](https://github.com/nvim-neorg/neorg/commit/0edde97b51a5247bd4db351a38d5f36131b642f7))
* **ci:** wrong version on typecheck ([fb23d2e](https://github.com/nvim-neorg/neorg/commit/fb23d2e78bf6ee601ed1de2a9ded23d6201f7506))
* **concealer:** footnote pattern should be matched against full string ([fc09cfc](https://github.com/nvim-neorg/neorg/commit/fc09cfc25e243a82653a758bc137395f4860b6f5))
* **config:** add support for bsd operating systems ([#1281](https://github.com/nvim-neorg/neorg/issues/1281)) ([2bdb89c](https://github.com/nvim-neorg/neorg/commit/2bdb89c388d5c9e1956e7aab949ffb003e9a8ea5))
* **config:** make the type system happy ([27482dc](https://github.com/nvim-neorg/neorg/commit/27482dcee4b14ed61a10ba51261919cb45351dad))
* **core.keybinds:** type errors with events ([dbe2841](https://github.com/nvim-neorg/neorg/commit/dbe28417222e044bcbec5bb016f0d604004bcbb3))
* **core.mode:** type errors with events ([fb2c561](https://github.com/nvim-neorg/neorg/commit/fb2c561f0080b621fd2853a3190d48f885a13b6d))
* **core.neorgcmd:** type errors with events ([1ab6236](https://github.com/nvim-neorg/neorg/commit/1ab6236a954cf2de6fe4b736a66ca5a17d85a6ff))
* **core.promo:** type errors with events ([0016fdd](https://github.com/nvim-neorg/neorg/commit/0016fdd8f2349dec1c1865f3412dbd08232b1bbd))
* **core.syntax:** remove deprecated functions, fix type errors in the code ([221bb2e](https://github.com/nvim-neorg/neorg/commit/221bb2eb10c8d7b7f62537393a9dce385d36b638))
* **core/modules:** reorder comments so that they are properly parsed by luals ([f20b40a](https://github.com/nvim-neorg/neorg/commit/f20b40a44a4e96ff9fa5ed252c3a678629adfda9))
* **docgen:** make the wiki work again ([d44dd38](https://github.com/nvim-neorg/neorg/commit/d44dd387d8f553791671f52f691be7580b98c6db))
* don't try to pull lua-utils when it's not applicable ([bcac799](https://github.com/nvim-neorg/neorg/commit/bcac79933f3930f04d9b1517106646a56efd8606))
* enable source of `nvim-cmp` only norg file type ([#1298](https://github.com/nvim-neorg/neorg/issues/1298)) ([1ab15f4](https://github.com/nvim-neorg/neorg/commit/1ab15f4b30627fd5e6dd175a23c7360c2c08b2bd))
* enforce contraint on norgopolis-server ([4b9f25c](https://github.com/nvim-neorg/neorg/commit/4b9f25ca9760e89702ccbe117d1ce17780b64641))
* error with import loop ([16b5479](https://github.com/nvim-neorg/neorg/commit/16b54794a545d8f80c0e9007952e374df2e417cd))
* **export.markdown:** fix error on unexported verbatim tags without parameters ([#1280](https://github.com/nvim-neorg/neorg/issues/1280)) ([e6d89d3](https://github.com/nvim-neorg/neorg/commit/e6d89d333aff65a771a98955fac9fc178345c01c))
* **export.markdown:** fix html `embed` tags not being exported ([5b2022c](https://github.com/nvim-neorg/neorg/commit/5b2022caaf689dc1c78b8959a2547249f8b05769))
* **export.markdown:** fix markdown `embed` tags not being exported ([f3d4230](https://github.com/nvim-neorg/neorg/commit/f3d4230d37da5d727d3ae13e1bada30e37b433ad))
* **export.markdown:** fix the first `tag` always being exported by default ([bda456d](https://github.com/nvim-neorg/neorg/commit/bda456d6685545893d446e841f2ee41633b6548a))
* **export.markdown:** use proper amount of parameters ([b0b5a43](https://github.com/nvim-neorg/neorg/commit/b0b5a4370228f27bd98516b9061bd6c87386c8f3))
* **highlights:** updated default groups to match names in treesitter ([56ad805](https://github.com/nvim-neorg/neorg/commit/56ad8056b6180dba60ddbd5bca2f29de12f3bd1d))
* **highlights:** updated unordered list, underline and strikethrough groups with standard names ([e7f524c](https://github.com/nvim-neorg/neorg/commit/e7f524c44f1a5d6fba6cced7e4eb3c22b9ff1473))
* incorrect code in upgrade module ([07967f1](https://github.com/nvim-neorg/neorg/commit/07967f1982b589974958689c7a055b33ea194691))
* **integrations.truezen:** use `setup()` instead of `load()` ([26cfe0e](https://github.com/nvim-neorg/neorg/commit/26cfe0e155c35695d2d4af7d938a9ffd160b8797))
* **integrations.truezen:** use `setup()` instead of `load()` ([3506236](https://github.com/nvim-neorg/neorg/commit/3506236e292de6d7989b6d6541ed5fcfa1e73bab))
* invalid vim.cmd syntax ([affdd6f](https://github.com/nvim-neorg/neorg/commit/affdd6fcbc2092fca293817d65e1664afbafe223))
* nobody figured it out so away it goes :) ([7b3e794](https://github.com/nvim-neorg/neorg/commit/7b3e794aa8722826418501608c8a3ffe4e19ea30))
* perform setup after the parsers have been installed ([f90c965](https://github.com/nvim-neorg/neorg/commit/f90c9654352f424690327271e3bd9a2c036489d0))
* properly install parsers ([59b6d61](https://github.com/nvim-neorg/neorg/commit/59b6d619213506e405a8ed13669dc82120653ac5))
* properly log TS error messages ([73db6b5](https://github.com/nvim-neorg/neorg/commit/73db6b51e9e28cce7ef17baf78a8416b563ca53a))
* properly require lua-utils ([b8a78c0](https://github.com/nvim-neorg/neorg/commit/b8a78c0c84dcfd3996480339c3d10c6e1ade8363))
* refactor library to not use lua utils ([5fcae0b](https://github.com/nvim-neorg/neorg/commit/5fcae0b080531ac1438faeefd47ae11e1633b463))
* refresh lua cache upon succesful installation of dependencies ([f1473cf](https://github.com/nvim-neorg/neorg/commit/f1473cf9ab1c1b610758e28fcb9e8a792a51ddf4))
* remove lua-utils from the loaded list to force a refresh ([af1e06c](https://github.com/nvim-neorg/neorg/commit/af1e06c801d6cb5682dde9a63b22053a8cf28665))
* rename Neorg index message to be more insightful ([6d686cd](https://github.com/nvim-neorg/neorg/commit/6d686cdc064489ed17b49b6f1463fc9b3e5ba698))
* **syntax:** ignore type annotation errors in syntax module ([6d94c2a](https://github.com/nvim-neorg/neorg/commit/6d94c2ac08f13208d84ce21b1e3eea13158b6491))
* TSInstallSync not found ([df6cc22](https://github.com/nvim-neorg/neorg/commit/df6cc22f36e347856bc14807b9db396e67b927d7))
* update module name to reflect breaking changes within `luarocks.nvim` ([1779e59](https://github.com/nvim-neorg/neorg/commit/1779e5962badca89505b60e9617b939489c661b0))
* use lua-utils ([b1ce837](https://github.com/nvim-neorg/neorg/commit/b1ce8374a88d638f42f0ce97b3b4b6b2b4e89023))
### Code Refactoring
* deprecate `core.upgrade` ([45f51ed](https://github.com/nvim-neorg/neorg/commit/45f51ed759d9cdd6c69b67e57ecbd054fd4cbaba))
* **lib:** deprecate `lib.map` ([8340274](https://github.com/nvim-neorg/neorg/commit/83402746b8b43190edb360329a023040bd388294))
* **neorgcmd:** slowly move away from the deprecated `commands` directory ([560d5a0](https://github.com/nvim-neorg/neorg/commit/560d5a04fb8143aaa5e64ba8eb100df97631fa36))
* use decoupled lua-utils instead of the regular neorg utils ([5f6bf7e](https://github.com/nvim-neorg/neorg/commit/5f6bf7e5444fe839d739bd376ec5cdb362f02dc6))
## [7.0.0](https://github.com/nvim-neorg/neorg/compare/v6.2.0...v7.0.0) (2023-12-28)
### ⚠ BREAKING CHANGES
* **selection_popup:** modernize code of selection popup
### ref
* **selection_popup:** modernize code of selection popup ([310f3a4](https://github.com/nvim-neorg/neorg/commit/310f3a484d3d98b0d05650a38407dcaa7f090b96))
### Features
* allow upward paths in tangle ([265e6af](https://github.com/nvim-neorg/neorg/commit/265e6af8decbb30b0ee14aee373b1bfe9a78b858))
* **concealer:** add ability to disable spell checking in code blocks ([316403a](https://github.com/nvim-neorg/neorg/commit/316403ad1cbb665e7838f596384d44b1649f6c1b))
* **concealer:** add config for concealing numeric footnote title to superscript ([2a6fc9c](https://github.com/nvim-neorg/neorg/commit/2a6fc9c808f6d643bf7c2f911a767e4aac500560))
* **concealer:** add configuration for hrule start and end position ([3db316a](https://github.com/nvim-neorg/neorg/commit/3db316a33838eb0875eacd659af9d49bbd4aef39))
* **keyinds:** add keybind for entering link traversal mode ([#1177](https://github.com/nvim-neorg/neorg/issues/1177)) ([8cf5205](https://github.com/nvim-neorg/neorg/commit/8cf52058fb7e9c3057882430ade90be5bdfb3a94))
* prefix all keybind descriptions with "neorg" for discoverability ([15c24cd](https://github.com/nvim-neorg/neorg/commit/15c24cdb264807b09e9281e2d72b324145da1d57))
* **selection_popup:** allow keybinds to be processed from another buffer ([603b633](https://github.com/nvim-neorg/neorg/commit/603b633b8df231fe37a338856b1dea7cd955a969))
* **summary:** add strategy which uses workspace subfolders as category ([aa8e66d](https://github.com/nvim-neorg/neorg/commit/aa8e66dd40c07a4de58f9ed93f27ab4dac9a241c))
* **tangle:** add `report_on_empty` option in `core.tangle` ([#1250](https://github.com/nvim-neorg/neorg/issues/1250)) ([cc6d8b1](https://github.com/nvim-neorg/neorg/commit/cc6d8b150de7bf806f3a191867a7f143970b5112))
* **toc:** add config for enabling synchronized cursorline in toc window ([d3cbb45](https://github.com/nvim-neorg/neorg/commit/d3cbb45b66c865b1b92b5f8b2dbd5a5fff7f1a2f))
* **toc:** add toc item filter ([#1195](https://github.com/nvim-neorg/neorg/issues/1195)) ([5c42084](https://github.com/nvim-neorg/neorg/commit/5c420844227c75390cc9fdf6047bfc49466169d9))
* **toc:** auto adjust toc vsplit width upon creation ([81f6330](https://github.com/nvim-neorg/neorg/commit/81f6330af951e89f98e8468d23a648fc32acdd2f))
* **toc:** don't scroll content window when switching to toc ([c4fc7e6](https://github.com/nvim-neorg/neorg/commit/c4fc7e629e8ea7ecc9610107622f46e888764534))
* **toc:** enable folding in toc ([218e7eb](https://github.com/nvim-neorg/neorg/commit/218e7ebbce010846c5ed6da647264c556c6a7ad4))
* **toc:** faster toc generation ([0171df1](https://github.com/nvim-neorg/neorg/commit/0171df1d0f8a6db254020e8b02ac576188ffad23))
* **toc:** support one ToC per tabpage ([d8a456b](https://github.com/nvim-neorg/neorg/commit/d8a456b7fa1b9d860fc36750b6e9a200a8eff5f3))
* **toc:** support todo status ([4ac077b](https://github.com/nvim-neorg/neorg/commit/4ac077b1f19efe63fcec4e6c744bc6a68dfc7f6a))
* **toc:** sync cursor from ToC to content buffer ([47e7c86](https://github.com/nvim-neorg/neorg/commit/47e7c86877aaae4d85c1a2add166ad6c15b8add4))
* **toc:** sync toc cursor after creating toc, scroll content to center when previewing ([cfcb51e](https://github.com/nvim-neorg/neorg/commit/cfcb51ea9a403ee7223e49d4afb0142d6d5e1659))
### Bug Fixes
* "Keybind not found" display causing errors ([#1215](https://github.com/nvim-neorg/neorg/issues/1215)) ([a51abd5](https://github.com/nvim-neorg/neorg/commit/a51abd53d8afc7de81e35d0a4247c3aa6ccfc76a))
* `update-metadata` would fail to work with several parse trees in the document ([#1234](https://github.com/nvim-neorg/neorg/issues/1234)) ([5a44d3f](https://github.com/nvim-neorg/neorg/commit/5a44d3ffbd3b4fff762f8b2712ab1cfd16cff016))
* **action:** run lint action against pr head ([f367396](https://github.com/nvim-neorg/neorg/commit/f36739620410917a3119ee4299894c353a0d88af))
* **autocommands:** pass correct buffer id ([941119d](https://github.com/nvim-neorg/neorg/commit/941119d48a5e354cfbed24a4b314bb4eb401a75b))
* **concealer:** BufNewFile->FileType, get winid of bufid when rendering ([c0983ca](https://github.com/nvim-neorg/neorg/commit/c0983ca60f02e1a65e5990593726e57678e03c4a))
* **concealer:** do not render on range change if concealer is disabled ([9b0c31a](https://github.com/nvim-neorg/neorg/commit/9b0c31a5179f3881f9ff2350da22c9a5a11f32ab))
* **concealer:** ensure backwards compatibility for `vim.treesitter.foldexpr` ([5921cc4](https://github.com/nvim-neorg/neorg/commit/5921cc48cb3be616db0071fa058cfa4d6633c8a6))
* **concealer:** use vim.treesitter.foldexpr for stabler folding ([53cbffb](https://github.com/nvim-neorg/neorg/commit/53cbffb7ecfcb60f19c10c72c4162978e8021959))
* **config:** delete `neovim_version` as it is no longer in use ([00f9a62](https://github.com/nvim-neorg/neorg/commit/00f9a628683b7b3f738e1d1d1a79d517c26b6ff5))
* **config:** fix luajit version detection ([237abac](https://github.com/nvim-neorg/neorg/commit/237abac43a38e4aa770bb5819f30b3d38ae5f392))
* **export:** better handling of new lines in markdown metadata ([d56cc3c](https://github.com/nvim-neorg/neorg/commit/d56cc3c9a9cd10bfac5eac2514a9457a3e9e848d))
* **export:** fix metadata values being ignored when converting to markdown ([6f9b66c](https://github.com/nvim-neorg/neorg/commit/6f9b66cfa75241d4b8c0890a312872104a2d96a1))
* **export:** handle empty `object`/`array` nodes in markdown metadata ([3afbadb](https://github.com/nvim-neorg/neorg/commit/3afbadb3d116d6f8a5fb0aa3af1c06563c4a038e))
* **hop:** fix range check across lines ([1038016](https://github.com/nvim-neorg/neorg/commit/10380167975732444f21c882e522d15b0ec55b34))
* **journal:** value assigned to variable current_quarter is unused ([0e88151](https://github.com/nvim-neorg/neorg/commit/0e8815116b08bfbceb2b36a8c82d81005e2596e0))
* **latex:** Want image integration ([a80c025](https://github.com/nvim-neorg/neorg/commit/a80c025b231a6acd925d625d6d9ea302bc20bd49))
* **luacheck:** setting non-standard global variables in latex renderer module ([#1176](https://github.com/nvim-neorg/neorg/issues/1176)) ([3f4b279](https://github.com/nvim-neorg/neorg/commit/3f4b279d7505ac854fcd31d1aad24991542ea5d8))
* **modules:** Check the right config key in module.wants ([8b25435](https://github.com/nvim-neorg/neorg/commit/8b25435e8bc60f9e6f665b3a28870d64d20f2b59))
* **neorg.norg:** clarify horizontal line syntax ([#1230](https://github.com/nvim-neorg/neorg/issues/1230)) ([e35bf90](https://github.com/nvim-neorg/neorg/commit/e35bf907533281a6c641505eae3bb42100d7b5a0))
* record that module `upgrade` requires at least 1 arg ([#1207](https://github.com/nvim-neorg/neorg/issues/1207)) ([51f55f5](https://github.com/nvim-neorg/neorg/commit/51f55f5c6d54fa86fdaae805b55ca88aa9607c37))
* **summary:** set correct indentation for list items ([120fb52](https://github.com/nvim-neorg/neorg/commit/120fb52f5fe21c43fcc7285bac4a9bce8a54a6ec))
* **toc:** clear title after assigning prefix ([f446645](https://github.com/nvim-neorg/neorg/commit/f4466457396717d10d2d235d019e0a80e1770087))
* **toc:** fix all stylua errors ([ae38baf](https://github.com/nvim-neorg/neorg/commit/ae38baf90a319488b726ed25166fc00641b3e0ce))
* **toc:** get window id on the fly to avoid assertion errors ([1b0ab75](https://github.com/nvim-neorg/neorg/commit/1b0ab75e8e57b08bc981e0d72fe928b0fff34fe2))
* **toc:** handle buf close ([985364f](https://github.com/nvim-neorg/neorg/commit/985364f561518502cc002494db4d48ec92b00d80))
* **toc:** handle buf close ([2d65f6c](https://github.com/nvim-neorg/neorg/commit/2d65f6cf7a0f40b9a474e17bc347255514dbde0e))
* **toc:** listen cursormoved for all norg files ([19bff13](https://github.com/nvim-neorg/neorg/commit/19bff133659c16973e52546f54a13469bfecb1b6))
* **toc:** stop synching cursor when content window is hidden ([15ed981](https://github.com/nvim-neorg/neorg/commit/15ed981858658796b698f6fc204f1378eef4b01d))
* **typecheck:** fix type errors caused by autoformat ([3f531c3](https://github.com/nvim-neorg/neorg/commit/3f531c362d07d52c4956520e3798e9cfb5aeabdf))
## [6.2.0](https://github.com/nvim-neorg/neorg/compare/v6.1.0...v6.2.0) (2023-11-18)
### Features
* add `traverse-link` Neorg mode ([#1170](https://github.com/nvim-neorg/neorg/issues/1170)) ([ed25267](https://github.com/nvim-neorg/neorg/commit/ed25267eec3b08a3de8bdb4b55243f869ea4b8fd))
* add LaTex rendering for inline equations ([#1133](https://github.com/nvim-neorg/neorg/issues/1133)) ([b5393e8](https://github.com/nvim-neorg/neorg/commit/b5393e8bdcf704f660fa86cace89033c5fc95504))
* allow arguments for `:Neorg generate-workspace-summary` ([#1156](https://github.com/nvim-neorg/neorg/issues/1156)) ([46741ed](https://github.com/nvim-neorg/neorg/commit/46741ede577392f36cad1cb8c8e6029fabb729f6))
* allow nested workspace summaries ([#1144](https://github.com/nvim-neorg/neorg/issues/1144)) ([a923055](https://github.com/nvim-neorg/neorg/commit/a9230559fb6871f1f62996f8e862876169432f08))
* **hop:** feed wslview with decoded link ([c3b9653](https://github.com/nvim-neorg/neorg/commit/c3b965340f380740a12432536d2b23ee6c7564f9))
* **metagen:** customize timezone and its format ([b458149](https://github.com/nvim-neorg/neorg/commit/b4581496328d47ab7912148ec030dcb3ec1951c4))
* option to inject specific metadata instead of defaults ([#1128](https://github.com/nvim-neorg/neorg/issues/1128)) ([5509079](https://github.com/nvim-neorg/neorg/commit/55090798a2eed2dd00fc1b2774bc6bf309a3bd0b))
### Bug Fixes
* **dirman:** add `raw_path` option to work with arbitrary filetype ([#1143](https://github.com/nvim-neorg/neorg/issues/1143)) ([0c9f5de](https://github.com/nvim-neorg/neorg/commit/0c9f5dea0cfe8b7c3d38f26651d82624079774ed))
* **journal:** toc reset month & add link indent ([#1165](https://github.com/nvim-neorg/neorg/issues/1165)) ([16af444](https://github.com/nvim-neorg/neorg/commit/16af444ef804aa7f099c7a5ae03640dfc2b60303))
* remove LaTeX renderer and image.nvim integration from `core.defaults` ([5a88bcb](https://github.com/nvim-neorg/neorg/commit/5a88bcbf60590348e4196493c9c7642f23ba21d7))
* workspace summary ignore closed files and title field of metadata tag ([#1139](https://github.com/nvim-neorg/neorg/issues/1139)) ([d081937](https://github.com/nvim-neorg/neorg/commit/d081937a00e0f0c6966116428117e159a785abb5))
## [6.1.0](https://github.com/nvim-neorg/neorg/compare/v6.0.0...v6.1.0) (2023-10-29)
### Features
* support dotrepeat for `promo` and `todo_items` ([#1105](https://github.com/nvim-neorg/neorg/issues/1105)) ([2c43e6b](https://github.com/nvim-neorg/neorg/commit/2c43e6b3252af198973cbe91f8fa7a762ff61a77))
### Bug Fixes
* **calendar:** display weekdays based on `nvim_strwidth` ([5eadb3c](https://github.com/nvim-neorg/neorg/commit/5eadb3cce8ab490222d12dfbb5c86372c89a5773))
* **calendar:** use `nvim_strwidth` for month names as well ([a081397](https://github.com/nvim-neorg/neorg/commit/a0813979663d5e55c481bb557c250b551042d115))
* **dirman:** open index file in default workspace only if it exists ([d1bda3c](https://github.com/nvim-neorg/neorg/commit/d1bda3caf7d73ec93bed125d2d76ba32ce897789))
* don't autoload `core.neorgcmd` nor `core.keybinds` as dependencies of other modules ([#1051](https://github.com/nvim-neorg/neorg/issues/1051)) ([62ba931](https://github.com/nvim-neorg/neorg/commit/62ba93130eb795ccc2133841ce0e541f8bc51eb7))
* **meta:** fix treesitter deprecation warning ([#1104](https://github.com/nvim-neorg/neorg/issues/1104)) ([#1130](https://github.com/nvim-neorg/neorg/issues/1130)) ([5205f3f](https://github.com/nvim-neorg/neorg/commit/5205f3f1ed23545a3015021be11d35a012e3b02a))
* **utils:** don't dotrepeat insert mode actions ([#1111](https://github.com/nvim-neorg/neorg/issues/1111)) ([969b3f1](https://github.com/nvim-neorg/neorg/commit/969b3f106683c66ab685ecba2a67bf11cb806785))
## [6.0.0](https://github.com/nvim-neorg/neorg/compare/v5.0.0...v6.0.0) (2023-09-23)
### ⚠ BREAKING CHANGES
* adapt to new injection syntax for treesitter
* **codebase:** make the `neorg` object local to a `core` module ([#1001](https://github.com/nvim-neorg/neorg/issues/1001))
### Features
* add blank lines between tangled blocks ([#958](https://github.com/nvim-neorg/neorg/issues/958)) ([1c41592](https://github.com/nvim-neorg/neorg/commit/1c41592ec975189c79987aa32228778c111eb67f))
* **concealer:** add option for opening all folds by default ([#1049](https://github.com/nvim-neorg/neorg/issues/1049)) ([6bfcaeb](https://github.com/nvim-neorg/neorg/commit/6bfcaeb8f36e0e4d2ae52dbde5e18b39d2351d5e))
* delimit tangle code blocks with file content ([#1014](https://github.com/nvim-neorg/neorg/issues/1014)) ([1809236](https://github.com/nvim-neorg/neorg/commit/18092365b21c73a0478b6bd6d9b3a66fd4b77a36))
* delimit tangled code blocks with headings ([#981](https://github.com/nvim-neorg/neorg/issues/981)) ([99bfcb1](https://github.com/nvim-neorg/neorg/commit/99bfcb11dc3fbc72c08259d5516738d3a1f7bd11))
* **document.meta:** indent items of incomplete lists/objects for nicer writing experience ([92f2e9d](https://github.com/nvim-neorg/neorg/commit/92f2e9d4a7bfdbb7ed0e9dcd9b8768db63188149))
* **esupports.hop:** add open mode for external link target ([#1072](https://github.com/nvim-neorg/neorg/issues/1072)) ([851a3a2](https://github.com/nvim-neorg/neorg/commit/851a3a2b3cea5335fca233273d3c8861a017da14))
* **esupports.hop:** support `os_open_link` for WSL ([#963](https://github.com/nvim-neorg/neorg/issues/963)) ([628ba9f](https://github.com/nvim-neorg/neorg/commit/628ba9f58e02db6b2818f68b62a1499c22eb9cd4))
* **esupports:** use `wslview` to open `wsl2` files ([#1038](https://github.com/nvim-neorg/neorg/issues/1038)) ([20502e5](https://github.com/nvim-neorg/neorg/commit/20502e50e9087248f6f8ed8d29fae9c849c1c77f))
* **itero:** allow fallback keys for when there is no object to iterate ([ba2899d](https://github.com/nvim-neorg/neorg/commit/ba2899d6580706cbf727720db2765aead9d342de))
* **keybinds:** allow `core.itero.next-iteration` to fall back to a specific key ([51ca15b](https://github.com/nvim-neorg/neorg/commit/51ca15b13e9a7b107bef54c9bed94b5863b9c5d5))
* **metagen:** allow falling back to the default template functions ([#1079](https://github.com/nvim-neorg/neorg/issues/1079)) ([8200ebc](https://github.com/nvim-neorg/neorg/commit/8200ebc5a5730a14efa2e47751a43539c8a16fb5))
* **metagen:** more precise timestamp with HH:MM:SS and timezone ([#1052](https://github.com/nvim-neorg/neorg/issues/1052)) ([a8f7a9e](https://github.com/nvim-neorg/neorg/commit/a8f7a9eeef5c22eac626e7533eeee0ac9def72ad))
### Bug Fixes
* `:h neorg` not working as intended ([0b3df86](https://github.com/nvim-neorg/neorg/commit/0b3df8633cc1cbb3ffd6f34d4e9073fd6f5083ab))
* **`:h neorg`:** make link point to correct line in specs ([#1092](https://github.com/nvim-neorg/neorg/issues/1092)) ([e20d032](https://github.com/nvim-neorg/neorg/commit/e20d032ea3c485fc499f4dbc4bf7ce6afd6767ba))
* `folke/todo-comments.nvim` comments highlighting (again) ([#1094](https://github.com/nvim-neorg/neorg/issues/1094)) ([d8e2c8e](https://github.com/nvim-neorg/neorg/commit/d8e2c8e309c05a7db4ca84fc1216be38cf6a010f))
* broken configuration merging in modules.lua ([#1062](https://github.com/nvim-neorg/neorg/issues/1062)) ([b4c7935](https://github.com/nvim-neorg/neorg/commit/b4c7935a0e692870f38ff34689fd900de40ea479))
* **calendar:** call `os.date` twice to generate correct weekday ([#1058](https://github.com/nvim-neorg/neorg/issues/1058)) ([61fb605](https://github.com/nvim-neorg/neorg/commit/61fb60508516b224ec78666187e70074397b37f8))
* **calendar:** give calendar enough space to render ([#950](https://github.com/nvim-neorg/neorg/issues/950)) ([6fece15](https://github.com/nvim-neorg/neorg/commit/6fece1546d051a5f2a2d932d5978beec1ef920ab))
* **concealer,indent:** "require'neorg'" missing in v:lua call ([#1010](https://github.com/nvim-neorg/neorg/issues/1010)) ([1d3b425](https://github.com/nvim-neorg/neorg/commit/1d3b4252862cadf80751e0e03463b27a1782ce94))
* **concealer:** avoid conflict between preset and custom icons ([9a0aab0](https://github.com/nvim-neorg/neorg/commit/9a0aab039b174625bfc4ff708ba32f3fc5713649))
* **concealer:** do not render missing node ([#1004](https://github.com/nvim-neorg/neorg/issues/1004)) ([08c7d19](https://github.com/nvim-neorg/neorg/commit/08c7d19125f5f8aa36911bfd3ea166b650e05e07))
* **concealer:** don't rerender at `conceallevel` change when disabled ([#1068](https://github.com/nvim-neorg/neorg/issues/1068)) ([63a7a10](https://github.com/nvim-neorg/neorg/commit/63a7a101387550a220186cab7e85df15635f3356))
* **concealer:** more precise anticonceal feature detection ([#1056](https://github.com/nvim-neorg/neorg/issues/1056)) ([b0117a4](https://github.com/nvim-neorg/neorg/commit/b0117a40675398cb6b7f0967a52e148d5ddb6f42))
* **concealer:** revert a wrong fix, make luacheck ignore empty if branch instead (supercedes [#1080](https://github.com/nvim-neorg/neorg/issues/1080)) ([0c82917](https://github.com/nvim-neorg/neorg/commit/0c82917b89a187662cf8c1f5fc3a17153866df9b))
* **concealer:** tolerate duplicate marks caused by undo during rendering ([#1015](https://github.com/nvim-neorg/neorg/issues/1015)) ([44bb353](https://github.com/nvim-neorg/neorg/commit/44bb3533465d30062b28a334115e37dbbe7e5118))
* **core:** assign custom field ([4b057ad](https://github.com/nvim-neorg/neorg/commit/4b057ad071f0e395fb1e983c9611913e9b46108f))
* **dirman:** correctly create nested directory ([#1061](https://github.com/nvim-neorg/neorg/issues/1061)) ([4f0888b](https://github.com/nvim-neorg/neorg/commit/4f0888bdf98f7b1eeb96365aca17aa08ba4a07ea))
* **docgen:** `neorg.core` not found ([bb29db9](https://github.com/nvim-neorg/neorg/commit/bb29db9320b353da8abdfaebcba74a0a1d6e1a20))
* **docgen:** inline `esupports.metagen` template function definitions ([#945](https://github.com/nvim-neorg/neorg/issues/945)) ([a993b35](https://github.com/nvim-neorg/neorg/commit/a993b357ab86e153ecd50e2d4b704b8dcffedc1f))
* don't use deprecated `query.get_node_text()` call ([#1067](https://github.com/nvim-neorg/neorg/issues/1067)) ([7248c34](https://github.com/nvim-neorg/neorg/commit/7248c347704d658daf0fa0a84706c120e92eb1a5))
* error in loading preventing wiki from generating ([2745ee1](https://github.com/nvim-neorg/neorg/commit/2745ee1371c1029171bb98f2d9fb258e688d2c20))
* fetched get_language_list from utils ([#1003](https://github.com/nvim-neorg/neorg/issues/1003)) ([3db1001](https://github.com/nvim-neorg/neorg/commit/3db10018e8893aee47f3b5eb9f4d7440f8db5136))
* **highlights:** always try to attach highlights when triggered ([#1025](https://github.com/nvim-neorg/neorg/issues/1025)) ([31b3bfd](https://github.com/nvim-neorg/neorg/commit/31b3bfddfc1a4e426b41879bdb1a039babc554e3))
* indents within `document.meta` would not work ([b14334e](https://github.com/nvim-neorg/neorg/commit/b14334e39dcf6d8a6edb18547b7c4580387dce63))
* issue a more friendly error message when user loads tempus pre-Neovim `0.10.0` ([#1035](https://github.com/nvim-neorg/neorg/issues/1035)) ([333a1fd](https://github.com/nvim-neorg/neorg/commit/333a1fd67aad3dee49305b0278bd59f8ae740f13))
* **journal:** expand entry path correctly (fixes [#780](https://github.com/nvim-neorg/neorg/issues/780)) ([#995](https://github.com/nvim-neorg/neorg/issues/995)) ([e76f0cb](https://github.com/nvim-neorg/neorg/commit/e76f0cb6b3ae5e990052343ebb73a5c8d8cac783))
* **journal:** Remove condition from 'toc' subcommand (fixes [#597](https://github.com/nvim-neorg/neorg/issues/597)) ([#996](https://github.com/nvim-neorg/neorg/issues/996)) ([99f33e0](https://github.com/nvim-neorg/neorg/commit/99f33e08fe074126b491e02854e5d00dab10f5ae))
* **looking-glass:** ensure both the target buffer and the source are loaded before pursuing any operations ([fba064d](https://github.com/nvim-neorg/neorg/commit/fba064db88eae3419d20ce35cf3961d02c355a8f))
* **maneoeuvre:** `lib` -> `utils` ([0949a4a](https://github.com/nvim-neorg/neorg/commit/0949a4a2816ef19cb19e0ef8d483d3410dd0895a))
* On close of TOC, only delete buffer if it exists ([#978](https://github.com/nvim-neorg/neorg/issues/978)) ([32bae17](https://github.com/nvim-neorg/neorg/commit/32bae172814611f82e90b696b72cac99ff8de0e9))
* **presenter:** ensure module.private is not overriden ([#1037](https://github.com/nvim-neorg/neorg/issues/1037)) ([c9dd9f7](https://github.com/nvim-neorg/neorg/commit/c9dd9f7d506717b00e99409e4088e5b739c36b39))
* replace `get_filetype` with `vim.filetype.match` ([#982](https://github.com/nvim-neorg/neorg/issues/982)) ([4e6dbb1](https://github.com/nvim-neorg/neorg/commit/4e6dbb184442bc33e20ce760f093c07b32ad4128))
* **summary:** escape ws_root special characters ([#1012](https://github.com/nvim-neorg/neorg/issues/1012)) ([32abc0d](https://github.com/nvim-neorg/neorg/commit/32abc0da29dd5bf4b42d340810b64754fd7a37b8))
* **tags:** make new tags work with updated neorg help document ([#994](https://github.com/nvim-neorg/neorg/issues/994)) ([3f946f8](https://github.com/nvim-neorg/neorg/commit/3f946f8814a59ac16baaf4bc1dd0f4aca3807736))
* **tangle:** accessing unused variable ([0f37ab8](https://github.com/nvim-neorg/neorg/commit/0f37ab86ea82838ddd9feeab94986d6d72d0d85a))
* **toc:** preserve heading hierarchy ([#1053](https://github.com/nvim-neorg/neorg/issues/1053)) ([1c1060f](https://github.com/nvim-neorg/neorg/commit/1c1060f0d187cd0939b05c1310bb58911e84bc22))
* **ui:** remove possible ui noise caused by user's opts ([68eae35](https://github.com/nvim-neorg/neorg/commit/68eae352bf4b936e667b5eb4d454d4d280d2286d))
* Update `get_username` call ([#1005](https://github.com/nvim-neorg/neorg/issues/1005)) ([93bf092](https://github.com/nvim-neorg/neorg/commit/93bf092a817df07f75cee578c74b4eabab3b7c87))
### Code Refactoring
* adapt to new injection syntax for treesitter ([064f8f6](https://github.com/nvim-neorg/neorg/commit/064f8f65dd32f4fe728e76acfa3e4e153b121147))
* **codebase:** make the `neorg` object local to a `core` module ([#1001](https://github.com/nvim-neorg/neorg/issues/1001)) ([5706f1e](https://github.com/nvim-neorg/neorg/commit/5706f1efdcf55f273de8f52deeb35375a303be72))
## [5.0.0](https://github.com/nvim-neorg/neorg/compare/v4.6.0...v5.0.0) (2023-06-07)
### ⚠ BREAKING CHANGES
* **core.ui:** don't use old Neovim APIs, fix errors when using `<LocalLeader>nn`
* **core.highlights:** remove `todo_items_match_color` option
* **highlights:** simplify highlights for performance reasons
* **summary:** fix norg links, use first heading as title if found ([#928](https://github.com/nvim-neorg/neorg/issues/928))
* **core:** remove `real`/imaginary components of modules, improve startup time, remove `imports` from `module.setup`
* remove the `core.news` module
* **concealer:** rewrite for performance and stability ([#834](https://github.com/nvim-neorg/neorg/issues/834))
* since 5.0 do not longer warn about deprecated `core.norg.*` modules
* move to new/improved metadata parser, change highlight queries
### Features
* add extra nesting level, make icons specific to non-anticonceal usage ([84ea792](https://github.com/nvim-neorg/neorg/commit/84ea792d97977b98caab8e63538d3286f58b2b1b))
* add highlights to `&variable&`s ([#710](https://github.com/nvim-neorg/neorg/issues/710)) ([97080f7](https://github.com/nvim-neorg/neorg/commit/97080f798e0872a52510e33cf7f9064af5501da3))
* add neorg to luarocks ([4fceaa6](https://github.com/nvim-neorg/neorg/commit/4fceaa67656a0ebf17daeac133db2387df44552a))
* conceal the `{* }` parts of links ([729e7ac](https://github.com/nvim-neorg/neorg/commit/729e7ac46b5feac7f97826f755695f0e2c4799f9))
* **concealer:** add more icon generators ([49b9788](https://github.com/nvim-neorg/neorg/commit/49b9788a4988235d4357f8ae87d3ce82ee39302e))
* **concealer:** add numeric anticonceal if supported ([55feccf](https://github.com/nvim-neorg/neorg/commit/55feccf37df2b1143ea85151b9430149c617aa99))
* **concealer:** rewrite for performance and stability ([#834](https://github.com/nvim-neorg/neorg/issues/834)) ([151c033](https://github.com/nvim-neorg/neorg/commit/151c0337684a30ab8a9b31683b7a2fa28b0a15b0))
* **esupports.hop:** link jump to line + fixes + refactoring ([#903](https://github.com/nvim-neorg/neorg/issues/903)) ([49610cd](https://github.com/nvim-neorg/neorg/commit/49610cdee13050fc872cc006a690a911dda68413))
* **indent:** add `dedent_excess` configuration option ([#624](https://github.com/nvim-neorg/neorg/issues/624)) ([66d5a22](https://github.com/nvim-neorg/neorg/commit/66d5a2251b0871aa037135644b6fca2a856de5b4))
* **itero:** don't start newline on empty line ([#911](https://github.com/nvim-neorg/neorg/issues/911)) ([4c76b74](https://github.com/nvim-neorg/neorg/commit/4c76b741a0003417ed38bf0f43727810c27fb042))
* **keybinds.lua:** add `desc` fields to task keybinds ([#926](https://github.com/nvim-neorg/neorg/issues/926)) ([978fdc1](https://github.com/nvim-neorg/neorg/commit/978fdc1dede2325374dc5a32db10a4b6dad87bf0))
* **keybinds.lua:** add descriptions to all keybinds ([bb50538](https://github.com/nvim-neorg/neorg/commit/bb505384372b87ae6193c9ceeb02312d50f0df3c))
* move to new/improved metadata parser, change highlight queries ([962e45a](https://github.com/nvim-neorg/neorg/commit/962e45a29f1d61f685a5bacb9a2b00eb0a11d9c5))
* **promo:** promote/demote prefix without following text ([#912](https://github.com/nvim-neorg/neorg/issues/912)) ([544bb06](https://github.com/nvim-neorg/neorg/commit/544bb06c28956c4e21b6d6d32b1b3ea7415be7cd))
### Bug Fixes
* **completion:** selected completion engine not being engaged ([474af82](https://github.com/nvim-neorg/neorg/commit/474af829b0f3e25e09e68d2842ffcb6ca24d359b))
* **concealer:** disable assertion for prefixes until parser changes ([#932](https://github.com/nvim-neorg/neorg/issues/932)) ([92aa737](https://github.com/nvim-neorg/neorg/commit/92aa7373ccdfc5c9d1616027173237ee9cc4098e))
* **concealer:** do not listen vimleavepre ([#920](https://github.com/nvim-neorg/neorg/issues/920)) ([865224a](https://github.com/nvim-neorg/neorg/commit/865224a59982a148e9b11647d23e2de61272c42c))
* **concealer:** fix concealing in anchors, don't error on broken config ([#923](https://github.com/nvim-neorg/neorg/issues/923)) ([f448b58](https://github.com/nvim-neorg/neorg/commit/f448b581c6a6cf2747b33ff6bfece6c21c72b03f))
* **concealer:** minor fixes, plus wiki error fix ([#916](https://github.com/nvim-neorg/neorg/issues/916)) ([5629898](https://github.com/nvim-neorg/neorg/commit/5629898cf24bf25a39723e4113ce87a08f0d9dc1))
* **concealer:** record cursor upon init to fix first line conceal ([#924](https://github.com/nvim-neorg/neorg/issues/924)) ([44ee0cb](https://github.com/nvim-neorg/neorg/commit/44ee0cb8db3d655d45d5ca5cedc2b0745b232659))
* **core.highlights:** fix disappearing highlights when opening up norg files ([9db5645](https://github.com/nvim-neorg/neorg/commit/9db56453e2f7f6bc7e81baa338e09a2565ccaff1))
* **core.highlights:** wrongly placed bracket ([1886d36](https://github.com/nvim-neorg/neorg/commit/1886d363e9f397251060a4d6681fa975ef9d3b64))
* **core.summary:** bugs + flexibility around incomplete metadata ([#927](https://github.com/nvim-neorg/neorg/issues/927)) ([30343db](https://github.com/nvim-neorg/neorg/commit/30343dbdcdb511ecb6f484c46a9ae6f20a66ff7d))
* **docgen:** don't fail on mixed-type tables (lists and dictionaries at the same time) ([1afcaf8](https://github.com/nvim-neorg/neorg/commit/1afcaf804bae0048bfca1c0d49b69c968f2c187b))
* **docgen:** fix incorrect markdown indentation in wiki ([2bf6e63](https://github.com/nvim-neorg/neorg/commit/2bf6e63c299903d6e83fe14a521987dd0745efb0))
* **docgen:** propagate docgen error exit code ([#917](https://github.com/nvim-neorg/neorg/issues/917)) ([0e97976](https://github.com/nvim-neorg/neorg/commit/0e97976417d3e387d9be2f4fb42cd66c72254b6b))
* **highlights:** assert on treesitter being enabled ([#914](https://github.com/nvim-neorg/neorg/issues/914)) ([330f04e](https://github.com/nvim-neorg/neorg/commit/330f04ef693fb379c5ff199a05813e270718c850))
* **highlights:** attempt to reenable highlighting when none is found ([d1fb8c9](https://github.com/nvim-neorg/neorg/commit/d1fb8c94c57161e675402ec06ed80dc9223df655))
* **presenter:** errors on startup ([ea5fe1b](https://github.com/nvim-neorg/neorg/commit/ea5fe1b51d0a5b9f33a2fdd81906c5661b9198d6))
* **summary:** fix norg links, use first heading as title if found ([#928](https://github.com/nvim-neorg/neorg/issues/928)) ([6f893a2](https://github.com/nvim-neorg/neorg/commit/6f893a205a7543f2b7390b31176cf6e4ee2442c0))
* **todo_items:** don't look at child if parent is todo ([#909](https://github.com/nvim-neorg/neorg/issues/909)) ([8e3bcb2](https://github.com/nvim-neorg/neorg/commit/8e3bcb295a834dd57ba1d41ef2903f3dcc53a70e))
### Performance Improvements
* **core.highlights:** remove `todo_items_match_color` option ([7b5d550](https://github.com/nvim-neorg/neorg/commit/7b5d550843a3a2576aa95a90972c2ffc0e5c682f))
* **core.neorgcmd:** unnecessary `vim.tbl_deep_extend` ([71d291f](https://github.com/nvim-neorg/neorg/commit/71d291f97dc7e7fab4ca5740181e25f6d50a6e2d))
* **core.promo:** don't check `v.count`, use `v.count1` instead ([ca98238](https://github.com/nvim-neorg/neorg/commit/ca982387110ce2b796e585a10cd6f6922cec6c69))
* **events:** don't deepcopy a table on each new event ([12198ef](https://github.com/nvim-neorg/neorg/commit/12198efd76ec057be207e567dbeed3c8022d6eb6))
* **hop:** load plenary only when required, remove startup hiccup ([3caca5a](https://github.com/nvim-neorg/neorg/commit/3caca5ac209aa8098a355837b5c4696d16804e19))
### Code Refactoring
* **core.ui:** don't use old Neovim APIs, fix errors when using `<LocalLeader>nn` ([bbb25ff](https://github.com/nvim-neorg/neorg/commit/bbb25ffa380a2c159b0d301df9b81a8fcf3ab67a))
* **core:** remove `real`/imaginary components of modules, improve startup time, remove `imports` from `module.setup` ([593e9b2](https://github.com/nvim-neorg/neorg/commit/593e9b2a0826dfb8068a02277f4a45db00573e9a))
* **highlights:** simplify highlights for performance reasons ([f1ecd61](https://github.com/nvim-neorg/neorg/commit/f1ecd613d9c2911c7f7d5abd7f6f471614d05518))
* remove the `core.news` module ([1b9f8da](https://github.com/nvim-neorg/neorg/commit/1b9f8da57fb3e0bab9d1594fce87808ead8d650d))
* since 5.0 do not longer warn about deprecated `core.norg.*` modules ([19e0e8a](https://github.com/nvim-neorg/neorg/commit/19e0e8a3e983bf0a87c5c791863d4a480f0ff54c))
## [4.6.0](https://github.com/nvim-neorg/neorg/compare/v4.5.0...v4.6.0) (2023-05-25)
### Features
* **todo-items:** add missing "need input" icon and action ([#896](https://github.com/nvim-neorg/neorg/issues/896)) ([4cb0fa9](https://github.com/nvim-neorg/neorg/commit/4cb0fa9e56cf16672c258d1d97545d0526b506b5))
### Bug Fixes
* **esupports:** use structured api to avoid injection ([#899](https://github.com/nvim-neorg/neorg/issues/899)) ([e50b8ae](https://github.com/nvim-neorg/neorg/commit/e50b8aecb61dae1dd726fe00f40d3a554ba1b694))
* **tempus:** supply unprovided parameters from the current date when converting to `osdate` (supercedes [#897](https://github.com/nvim-neorg/neorg/issues/897)) ([f367451](https://github.com/nvim-neorg/neorg/commit/f36745161d82067e0f26865d93858fd3a15d8ad4))
## [4.5.0](https://github.com/nvim-neorg/neorg/compare/v4.4.1...v4.5.0) (2023-05-24)
### Features
* add colouring to TODO items ([238152a](https://github.com/nvim-neorg/neorg/commit/238152ab40ec1fb293fae75744942146876ed08f))
### Bug Fixes
* **metagen:** update generation to use user config for `updated` tag ([#882](https://github.com/nvim-neorg/neorg/issues/882)) ([6ed0f3a](https://github.com/nvim-neorg/neorg/commit/6ed0f3aa088e7b3141f01e3a82f3ec6517c34485)), closes [#865](https://github.com/nvim-neorg/neorg/issues/865)
* TSInstall issues on macOS, hopefully once and for good ([#891](https://github.com/nvim-neorg/neorg/issues/891)) ([4988a6f](https://github.com/nvim-neorg/neorg/commit/4988a6f9166b6ac7b9ba5115e61dc3a2b13e820c))
## [4.4.1](https://github.com/nvim-neorg/neorg/compare/v4.4.0...v4.4.1) (2023-05-17)
### Bug Fixes
* **tempus:** paste correct weekday from calendar ([ba54231](https://github.com/nvim-neorg/neorg/commit/ba54231e14a31c0571ff7baa4828de121a5e3072))
* **tempus:** properly handle conversions w.r.t Sun-Sat/Mon-Sun ([e39fa1b](https://github.com/nvim-neorg/neorg/commit/e39fa1b1626fc6f4bb9f4695b15d7065561c2567))
## [4.4.0](https://github.com/nvim-neorg/neorg/compare/v4.3.0...v4.4.0) (2023-05-16)
### Features
* **journal:** allow `custom` to take in no arguments, in which case ([ea0497a](https://github.com/nvim-neorg/neorg/commit/ea0497aea783507ce640e909b6764be4fcd5a388))
### Bug Fixes
* **promo:** don't add whitespace to empty lines ([#852](https://github.com/nvim-neorg/neorg/issues/852)) ([a7291f4](https://github.com/nvim-neorg/neorg/commit/a7291f4662664d0c3be3016adff6767dc52f907d))
* **tempus:** don't use the `re` module if it doesn't exist ([#872](https://github.com/nvim-neorg/neorg/issues/872)) ([3c99638](https://github.com/nvim-neorg/neorg/commit/3c99638db0ce4293e221216bdda03a55da6ad82b))
## [4.3.0](https://github.com/nvim-neorg/neorg/compare/v4.2.0...v4.3.0) (2023-05-15)
### Features
* **calendar:** add `t` command for "today" ([e53a509](https://github.com/nvim-neorg/neorg/commit/e53a5099b5725162c8f0a626823cac4819a9427d))
* **hop:** allow users to jump to timestamps ([22b12fb](https://github.com/nvim-neorg/neorg/commit/22b12fb2301582fd9552ab10ac0c934cda4d0a14))
### Bug Fixes
* **hop:** assume <current-day> when some parameters to dates are not supplied ([65bf064](https://github.com/nvim-neorg/neorg/commit/65bf06493ecb411b1589ad345771ae29aa17cd33))
* **tempus:** days like `4th`/`2nd` would not get parsed properly ([7368a8a](https://github.com/nvim-neorg/neorg/commit/7368a8ae10a0bab32729bd00dcac6f24cb55a8ef))
## [4.2.0](https://github.com/nvim-neorg/neorg/compare/v4.1.1...v4.2.0) (2023-05-15)
### Features
* **tempus:** add `,id` (insert date) keybinding ([34f13ba](https://github.com/nvim-neorg/neorg/commit/34f13ba253c160e72ef7817a950508430ed050d1))
* **tempus:** add insert mode `<M-d>` keybind to insert a date ([b420f69](https://github.com/nvim-neorg/neorg/commit/b420f69602b23fa8fc2f7f6526f49838f9521b10))
* **tempus:** allow dates to be converted to norg-compatible dates with `tostring()` ([3ec5f96](https://github.com/nvim-neorg/neorg/commit/3ec5f96dfd673c2c2a34b09748518accf61ec677))
### Bug Fixes
* don't allow tempus to load unless the Neovim ver is at least 0.10.0 ([c4429fa](https://github.com/nvim-neorg/neorg/commit/c4429fa1e1eb0c3c5652495b00aa4e1c56068914))
* **tempus:** do not assume `osdate` has all fields set ([c37a104](https://github.com/nvim-neorg/neorg/commit/c37a104c992326f8924de783d667f7c4c34f92b7))
## [4.1.1](https://github.com/nvim-neorg/neorg/compare/v4.1.0...v4.1.1) (2023-05-15)
### Bug Fixes
* remove calendar as a dependency of `core.ui`, fix errors for people not on nightly ([cd26a22](https://github.com/nvim-neorg/neorg/commit/cd26a220e999cc9103a2502299d16ae8e6fab4d9))
## [4.1.0](https://github.com/nvim-neorg/neorg/compare/v4.0.1...v4.1.0) (2023-05-14)
### Features
* add `core.tempus` module for date management ([b73ec2f](https://github.com/nvim-neorg/neorg/commit/b73ec2f5e1b11864ca0628a842a53a617d5851ce))
* add left-right cursor movement ([ea588bb](https://github.com/nvim-neorg/neorg/commit/ea588bbc2cabe37f90652a8cb49bf8b286498d2a))
* add skeleton for the calendar UI element ([3c99106](https://github.com/nvim-neorg/neorg/commit/3c99106d64792533a3cf10ac6ef20a089e94c1ff))
* **calendar:** add `?` help page for custom input ([211b0ba](https://github.com/nvim-neorg/neorg/commit/211b0ba61b5cf8f4520b5e03f5235f6de87e4417))
* **calendar:** add `$` and `0`/`_` navigation keybinds ([0061928](https://github.com/nvim-neorg/neorg/commit/006192808d436c27f8ceca0fffcc4a238ec402a7))
* **calendar:** add `m`/`M`, `L`/`H` and `y`/`Y` keybinds for the monthly view ([9bf562d](https://github.com/nvim-neorg/neorg/commit/9bf562d4633abac71b749ad7380cfe010a4c3bd7))
* **calendar:** add basic help popup when `?` is invoked ([779d089](https://github.com/nvim-neorg/neorg/commit/779d089e17139acfdd2a4988c34eea892f29a475))
* **calendar:** allow many simultaneous calendars ([f816fe7](https://github.com/nvim-neorg/neorg/commit/f816fe77ef2abecff9e98d8d35ff48a453317cf0))
* **calendar:** generalize functions even further, allow for offsets ([d857c34](https://github.com/nvim-neorg/neorg/commit/d857c34fe7a4645501551f2b66dd7915b9575b4f))
* **calendar:** implement basic `i` functionality ([6713f40](https://github.com/nvim-neorg/neorg/commit/6713f40d5d1f9e7a0e8b80ffdc82d4fff79c16c0))
* **calendar:** render as many months as is possible on screen ([fa23767](https://github.com/nvim-neorg/neorg/commit/fa237674cf75bf2bbc62a438b1606b65cc277ebd))
* **core.ui.calendar:** add day of the month rendering ([8bc3364](https://github.com/nvim-neorg/neorg/commit/8bc3364f306d5df528193a8ca68fa8b4a45701ef))
* **core.ui.calendar:** add static calendar ui ([adbb415](https://github.com/nvim-neorg/neorg/commit/adbb4151677bf22c809f9b6dfd35de5e07da6c7a))
* **core.ui.calendar:** highlight the current day differently ([eada386](https://github.com/nvim-neorg/neorg/commit/eada386cc79c122b648580de50b1f825b74a9627))
* **core.ui.calendar:** implement more of the barebones UI ([364f44a](https://github.com/nvim-neorg/neorg/commit/364f44a7d1179d5aa98d1f4ff6b4b6b1b6078bd3))
* **core.ui.calendar:** make the calendar display full month names ([c6cc059](https://github.com/nvim-neorg/neorg/commit/c6cc059992c812712c9a2bb4075b2d9b31f84f5c))
* **core.ui:** let `create_split` take in a `height` variable ([7dbbe9d](https://github.com/nvim-neorg/neorg/commit/7dbbe9d236596d8990827e717ea892cd98e79b23))
* correctly handle year boundaries ([58b55e1](https://github.com/nvim-neorg/neorg/commit/58b55e16366ecd431bece7ba4d42d512b21b972e))
* implement `render_month` function ([343fb8d](https://github.com/nvim-neorg/neorg/commit/343fb8d02422fe2f2a3c791f2bdba0be95c3c96b))
* place cursor over current day when creating calendar ([3ce268b](https://github.com/nvim-neorg/neorg/commit/3ce268b703d321561b86e546c7633326b39fa494))
* **tempus:** add `to_lua_date` function ([ef62e53](https://github.com/nvim-neorg/neorg/commit/ef62e5308c684468a822684382d14de8f8f63193))
### Bug Fixes
* **calendar:** allow the view to be written to on rerender ([8e247d4](https://github.com/nvim-neorg/neorg/commit/8e247d414bcb0d1123b2b12c7ff29bdf36c50cbd))
* **calendar:** fix incorrect movement with `H` across boundaries of months with different lengths ([48face2](https://github.com/nvim-neorg/neorg/commit/48face25855d7844302b13a125363c30b8a6fe9a))
* **calendar:** fix rest of highlight groups ([ead4c4c](https://github.com/nvim-neorg/neorg/commit/ead4c4c53769839b5063fab71ebb92d155d53676))
* **calendar:** if another calendar is open then close it instead of erroring ([9751e7d](https://github.com/nvim-neorg/neorg/commit/9751e7d62af0b7e49ff788058154b966be205e2e))
* **calendar:** make distance between each month uniform and support modifying the distance between each month ([746354d](https://github.com/nvim-neorg/neorg/commit/746354dea70e9657f61531375329e407e7f5a203))
* **calendar:** make month rendering work again ([164028f](https://github.com/nvim-neorg/neorg/commit/164028fd621e3c5b56603d88d6d5e2ba5db51d42))
* **calendar:** overlapping month names in the calendar view ([709cf78](https://github.com/nvim-neorg/neorg/commit/709cf78410b6ea631192ad004d3f2b83761f9953))
* **calendar:** prevent the buffer from being modifiable after it has been filled ([351e103](https://github.com/nvim-neorg/neorg/commit/351e10326e0e2bb6166e165ddb6598e917e6d25c))
* **calendar:** properly display "today's day" in the calendar view ([74ee71a](https://github.com/nvim-neorg/neorg/commit/74ee71a446662f92afa3cbd49f6c980bdf25ae92))
* **calendar:** reversed namespace names ([77b214c](https://github.com/nvim-neorg/neorg/commit/77b214cef220580cdcf527265a15ef980e7bcaf3))
* **core.ui.calendar:** logic error when parsing virt_text length for `set_logical_extmark` ([d5b29ee](https://github.com/nvim-neorg/neorg/commit/d5b29eea8e09d7bd0add778c6818539719914301))
* **core.ui.calendar:** wrong extmark being queried in month render routine ([46624b9](https://github.com/nvim-neorg/neorg/commit/46624b9a02e0d0e928026a0fd4852c4dd3ca7e0d))
## [4.0.1](https://github.com/nvim-neorg/neorg/compare/v4.0.0...v4.0.1) (2023-05-11)
### Bug Fixes
* **highlights.scm:** free form open/close chars would not be concealed ([5de014e](https://github.com/nvim-neorg/neorg/commit/5de014e7cc3dc6eed0a62854fe8ba58f664d97ea))
* **qol.toc:** display headings with TODO statuses unless the status is "cancelled" ([2e44346](https://github.com/nvim-neorg/neorg/commit/2e44346813310de9afc411e2348cf2be8540f70c))
* stop syntax processing if a buffer is already closed ([#859](https://github.com/nvim-neorg/neorg/issues/859)) ([cc2834a](https://github.com/nvim-neorg/neorg/commit/cc2834ae2beb2d5baa75d15848a94dae022faa2c))
## [4.0.0](https://github.com/nvim-neorg/neorg/compare/v3.2.2...v4.0.0) (2023-05-05)
### ⚠ BREAKING CHANGES
* move all `gt*` keybinds to `<LocalLeader>t*`
* remove `core.news`
### Features
* add basic cheatsheet (viewable via `:h neorg-cheatsheet`) ([d3e37a6](https://github.com/nvim-neorg/neorg/commit/d3e37a681743181a34dcfa7adb6ec61fb5aeb63c))
* **keybinds:** warn when a deprecated keybind is used (will be removed with `5.0`) ([e20d3c3](https://github.com/nvim-neorg/neorg/commit/e20d3c324b091cac29ccd7ec8431d24aa9b792c8))
### Bug Fixes
* **concealer:** buggy debounce logic causing visual artifacts (especially on the first line of a buffer) ([45388fc](https://github.com/nvim-neorg/neorg/commit/45388fc0478e8d1273bd80789e7e1af1df76458f))
* **concealer:** stop concealer if buffer is not loaded ([#836](https://github.com/nvim-neorg/neorg/issues/836)) ([6aa9fd3](https://github.com/nvim-neorg/neorg/commit/6aa9fd303c807ed1ca3fb15cdeab1e322d02fd31))
* **dirman.expand_path:** search for both `$/` and `$\` in links to support windows paths ([#830](https://github.com/nvim-neorg/neorg/issues/830)) ([160d40f](https://github.com/nvim-neorg/neorg/commit/160d40f5261be5149842942adbf260d6e359d9ec))
* **esupports.hop:** anchors to files woul dresult in a "link not found" ([#688](https://github.com/nvim-neorg/neorg/issues/688)) ([3009adf](https://github.com/nvim-neorg/neorg/commit/3009adf2cf48aedcbb309d0765e0fbbb64a0fdf4))
* **keybinds.lua:** remove dead `toc` keybinds ([06666f2](https://github.com/nvim-neorg/neorg/commit/06666f298e146d758d691366ca3465a3bd1e3f7f))
### Code Refactoring
* move all `gt*` keybinds to `<LocalLeader>t*` ([f67110d](https://github.com/nvim-neorg/neorg/commit/f67110d11d37fde09756eb2de8a1814d04a4a03b))
* remove `core.news` ([4086d9f](https://github.com/nvim-neorg/neorg/commit/4086d9f17d823cfe5a13e7b12b30e13b5d3b796d))
## [3.2.2](https://github.com/nvim-neorg/neorg/compare/v3.2.1...v3.2.2) (2023-04-27)
### Bug Fixes
* **core.ui:** clear the `winbar` option in Neorg popups to prevent "not enough room" errors ([fcebf9f](https://github.com/nvim-neorg/neorg/commit/fcebf9f6caf0667f99b1481e2c0a49f0eeb68fe9))
* **esupports.hop:** broken definitions and footnotes ([#733](https://github.com/nvim-neorg/neorg/issues/733)) ([94cf7d2](https://github.com/nvim-neorg/neorg/commit/94cf7d2889b386ce1313e80c8c04adf18872c028))
## [3.2.1](https://github.com/nvim-neorg/neorg/compare/v3.2.0...v3.2.1) (2023-04-27)
### Bug Fixes
* **export:** `gsub` export links that contain `#`, `?`. closes [#807](https://github.com/nvim-neorg/neorg/issues/807) ([#816](https://github.com/nvim-neorg/neorg/issues/816)) ([7f3a3b8](https://github.com/nvim-neorg/neorg/commit/7f3a3b850c8d4b73e7f85971aae2a96162bcb150))
* **export:** markdown export for horizontal_line ([#820](https://github.com/nvim-neorg/neorg/issues/820)) ([2178447](https://github.com/nvim-neorg/neorg/commit/217844796e00a1cea7c051435f9c49bee25e7caa))
## [3.2.0](https://github.com/nvim-neorg/neorg/compare/v3.1.0...v3.2.0) (2023-04-22)
### Features
* add `core.pivot` for toggling list types ([cbf383f](https://github.com/nvim-neorg/neorg/commit/cbf383ff4eca0e23a24d4244af20bed415ed400c))
* **keybinds:** add default keybinds for `core.pivot` ([2f49628](https://github.com/nvim-neorg/neorg/commit/2f496283504dcfb30d9ee60101a8290e743c1753))
* **pivot:** add `core.pivot.invert-list-type` keybind ([2d0446a](https://github.com/nvim-neorg/neorg/commit/2d0446a2d8e3789bbd17bbb3cb97e73befccb327))
### Bug Fixes
* **core.summary:** wrong module name in header, wrong internal command names ([a046900](https://github.com/nvim-neorg/neorg/commit/a0469001430a68f521d3292f8a8252655cfda941))
* **docgen:** installation documentation link for wiki ([ba8b31d](https://github.com/nvim-neorg/neorg/commit/ba8b31dc2491f80b9f65fadbafdfd94d6ef26988)), closes [#548](https://github.com/nvim-neorg/neorg/issues/548)
* **summary:** broken wiki entry ([69fbabf](https://github.com/nvim-neorg/neorg/commit/69fbabfb5764cd164453a764174cf5cfa813ae60))
## [3.1.0](https://github.com/nvim-neorg/neorg/compare/v3.0.0...v3.1.0) (2023-04-19)
### Features
* warn access to `core.norg` modules instead of breaking ([ed761a5](https://github.com/nvim-neorg/neorg/commit/ed761a5c5a9100861034b31978049401444fd6fb))
## [3.0.0](https://github.com/nvim-neorg/neorg/compare/v2.0.1...v3.0.0) (2023-04-19)
### ⚠ BREAKING CHANGES
* move all `core.norg.*` modules into `core.*`
* **Makefile:** remove `install_pre_commit` target
* move `core.norg.dirman.summary` -> `core.summary`
* **summary:** refactor of the `core.norg.dirman.summary` module
* **docgen:** wipe whole wiki on every reparse
### Features
* add `dirman.summary` module ([#750](https://github.com/nvim-neorg/neorg/issues/750)) ([93c40f2](https://github.com/nvim-neorg/neorg/commit/93c40f2e38a0770e9ce95787c8363320344a87c3))
* add `Home.md` generation capability ([6bdf557](https://github.com/nvim-neorg/neorg/commit/6bdf557ece33850f9733dddc343369d743a51564))
* **ci:** add `version_in_code.yml` workflow ([5746245](https://github.com/nvim-neorg/neorg/commit/5746245756bac83fcf02338c93bc87f6089e2bf3))
* cleanup, add document comments to all modules, add more error checks ([81284c1](https://github.com/nvim-neorg/neorg/commit/81284c1e2f6e441f6532678b76ff5378396dda2c))
* **config.lua:** add `norg_version`, bump `version` to `3.0.0` ([8d76723](https://github.com/nvim-neorg/neorg/commit/8d767232a571513a3ab8c5c14ddc6f26d09aa98a))
* **core.integrations.treesitter:** Return all same attributes of a tag ([bedf13d](https://github.com/nvim-neorg/neorg/commit/bedf13dbcef63099a52dd4f160d90c46fc1de440))
* **dirman:** add new `use_popup` option for `dirman` ([#743](https://github.com/nvim-neorg/neorg/issues/743)) ([6350254](https://github.com/nvim-neorg/neorg/commit/63502544afde1c15d79ce097ad1928314cb8c7cd))
* **docgen:** add `module` page generator ([17496a8](https://github.com/nvim-neorg/neorg/commit/17496a8e975f1bd9d896d7cc78a6e61d1a131245))
* **docgen:** add basic rendering skeleton logic ([215719e](https://github.com/nvim-neorg/neorg/commit/215719ece560400592c2fef2ed75ab57430baf9b))
* **docgen:** add comment integrity checking logic ([799886f](https://github.com/nvim-neorg/neorg/commit/799886f7ba5a072a453d5a90708686109ce4fa21))
* **docgen:** allow strings as table keys ([4adf04e](https://github.com/nvim-neorg/neorg/commit/4adf04e05d98b6bcb6a3aac4cab60d64fd0d86f9))
* **docgen:** auto-open <details> tags that contain tables or lists ([1f2e0dc](https://github.com/nvim-neorg/neorg/commit/1f2e0dc23f6944bad660553ad4550847cf68e096))
* **docgen:** differentiate between lists and tables ([c0062e5](https://github.com/nvim-neorg/neorg/commit/c0062e5a75226f063b59eb5ee8250cb4da6ea202))
* **docgen:** differentiate empty and nonempty tables/lists ([0ab1a8d](https://github.com/nvim-neorg/neorg/commit/0ab1a8d469667d6b763e299c390a3e9bc7ea1a13))
* **docgen:** implement `Required By` field ([7033c4b](https://github.com/nvim-neorg/neorg/commit/7033c4bd2dc4633d0874b2da05b0ae67928b1117))
* **docgen:** implement `Required By` section ([15bf71b](https://github.com/nvim-neorg/neorg/commit/15bf71b15e07917e0f3a55de44e79fcdfbfc557d))
* **docgen:** implement configuration_options parsing logic ([b34658a](https://github.com/nvim-neorg/neorg/commit/b34658a21602fdd286889c2e57bf2d68d63d4472))
* **docgen:** implement function rendering, fix incorrect interpretation of function calls ([a023488](https://github.com/nvim-neorg/neorg/commit/a023488944473dfcd611308d5e21b7a9b2d7690d))
* **docgen:** implement table rendering ([9074328](https://github.com/nvim-neorg/neorg/commit/907432885e40a16f064d4406cd45efeb895f0962))
* **docgen:** indent nested table keys ([9cf679a](https://github.com/nvim-neorg/neorg/commit/9cf679a24f3bb9db145ae4dfbeb43878a49839e3))
* **docgen:** massive structure changes, implement proper table rendering ([42b8728](https://github.com/nvim-neorg/neorg/commit/42b8728f291072b9d8a11bdf9c7e205ef15fb94d))
* **docgen:** parse config tables ([93c41e1](https://github.com/nvim-neorg/neorg/commit/93c41e1f0aa290d0ad2e2590753312c71a782395))
* **docgen:** perform `[@module](https://github.com/module)` lookups, pasre complex data structures like tables ([19f2381](https://github.com/nvim-neorg/neorg/commit/19f23811ba0366fe3ec9423d26aec33d9d34fcc2))
* **docgen:** properly implement recursive table scanning ([33e06b8](https://github.com/nvim-neorg/neorg/commit/33e06b8d0fc2e7a9b386fc95e6bce4dfb714e56f))
* **docgen:** sort entries when rendering ([b420e70](https://github.com/nvim-neorg/neorg/commit/b420e70532766475bce0bf1d34129e711a31e21a))
* **docgen:** start generating true module pages ([5115d5c](https://github.com/nvim-neorg/neorg/commit/5115d5cd4bd1fefb11f82cb3e3da18b74d4e9b9e))
* **helpers/lib:** add `read_files` and `title` functions ([d59f41b](https://github.com/nvim-neorg/neorg/commit/d59f41b78755b102a41d172d4e3f64d59cb86b8b))
* **helpers:** add `ensure_nested` function ([2c4e8d0](https://github.com/nvim-neorg/neorg/commit/2c4e8d02feb7f1e6878307e7813a9f13ec000a73))
* **helpers:** Add wrapper to vim.notify ([#778](https://github.com/nvim-neorg/neorg/issues/778)) ([c278f6f](https://github.com/nvim-neorg/neorg/commit/c278f6f895c6b2f9ef4fc217ed867675108d804e))
* implement _Sidebar generation ([733b74c](https://github.com/nvim-neorg/neorg/commit/733b74c92481bc955f1f46594e50fb4931ab3cf5))
* implement necessary APIs for complex data structure parsing ([b78f01c](https://github.com/nvim-neorg/neorg/commit/b78f01cd951b8ecfe7e842d31f609e6e4d5ac9db))
* implement new docgen featuring top-comment validation ([b77fbd5](https://github.com/nvim-neorg/neorg/commit/b77fbd52f96db049687901ac1f0a8aea7ab4bdfa))
* **indent:** adapt indentation of nestable detached modifiers when a detached modifier extension is found ([56e59da](https://github.com/nvim-neorg/neorg/commit/56e59daff56ba7f4d76b11ff3fc6dd70c4b54524))
* **makefile:** add `local-documentation` option ([ed20f79](https://github.com/nvim-neorg/neorg/commit/ed20f796f5bb337d230f5d33a3f6ba420a8d30a4))
* **qol.todo_items:** add new `create_todo_items` option ([d810aa4](https://github.com/nvim-neorg/neorg/commit/d810aa43c96301db35af351306eab54e35071d57))
* **qol.todo_items:** add new `create_todo_parents` option (false by default) ([6b6ef04](https://github.com/nvim-neorg/neorg/commit/6b6ef04e5fb0a5b1c3ff59699a9371afd659d9ff))
* **qol.todo_items:** when only done and uncertain items are present in ([1d6b0b0](https://github.com/nvim-neorg/neorg/commit/1d6b0b056b097e9f4bacf8877c49fdacbc445b2c))
* strip leading `--` from comments ([ecea630](https://github.com/nvim-neorg/neorg/commit/ecea6305a82007b6c8c509fd594f8b52c3331021))
* **summary:** implement `metadata` strategy and reimplement summary generation code ([f948288](https://github.com/nvim-neorg/neorg/commit/f9482881315d49d0a35206c7936a7f48c20dfcbf))
* **toc:** add `close_after_use` configuration option ([#785](https://github.com/nvim-neorg/neorg/issues/785)) ([e5d7fbb](https://github.com/nvim-neorg/neorg/commit/e5d7fbb0291e658f78545c29318c9162cf505d15))
### Bug Fixes
* `:Neorg journal today` would fail on alternative path separators ([#749](https://github.com/nvim-neorg/neorg/issues/749)) ([e7a5054](https://github.com/nvim-neorg/neorg/commit/e7a50542ad9921a8c7d652eeca6a9006cc024b79))
* **base.lua:** don't assign the `extension` flag to parent modules, only to the imports themselves ([fa5f561](https://github.com/nvim-neorg/neorg/commit/fa5f56163510eb00a0d75bec81d40d901c175d3b))
* **clipboard.code-blocks:** don't cut off characters from non-visual-line selection ([744ae49](https://github.com/nvim-neorg/neorg/commit/744ae49fe5fab9e54de96282778a202f85a2f37b))
* **code.looking-glass:** Use last attribute as start row of looking-glass (fix [#777](https://github.com/nvim-neorg/neorg/issues/777)) ([beef6fd](https://github.com/nvim-neorg/neorg/commit/beef6fd9420d6a798ddd796779b96f006b14ca12))
* **commands.return:** don't override the workspace to `default` after running `:Neorg return` ([169c7be](https://github.com/nvim-neorg/neorg/commit/169c7bee8a5f101c63c3a473a577dce079f7ddec))
* **concealer:** whenever running any scheduled command ensure that the buffer exists first ([b926416](https://github.com/nvim-neorg/neorg/commit/b9264161d0ef10ee61ace6ebeb0a55ca461b638a))
* **core.clipboard.code-blocks:** module would not work past version `1.0.0` ([ac88283](https://github.com/nvim-neorg/neorg/commit/ac8828369cb2a4b2e1e17e6b495645585ed2a37b))
* **core.clipboard.code-blocks:** visual selection would cut off one character too little ([87ed4bf](https://github.com/nvim-neorg/neorg/commit/87ed4bfde4a00a4cf4279298de02280bf11c7a74))
* **core.export.markdown:** Update markdown exporter for new todo syntax (fix [#757](https://github.com/nvim-neorg/neorg/issues/757)) ([336416f](https://github.com/nvim-neorg/neorg/commit/336416f6c41777a4025cc80b8a085e21e758931f))
* **core.itero:** preserve indentation on continued items ([92c31c4](https://github.com/nvim-neorg/neorg/commit/92c31c491caedd7d1a82b42d4ba6c2227c05d930))
* **core.norg.esupports.hop:** Make hop on anchors work again ([#756](https://github.com/nvim-neorg/neorg/issues/756)) ([d38a229](https://github.com/nvim-neorg/neorg/commit/d38a22940aaa55351cd4dc106540fa302fad4f0d))
* **core.norg.journal:** fixes [#736](https://github.com/nvim-neorg/neorg/issues/736) , now generates TOC correctly ([19c5558](https://github.com/nvim-neorg/neorg/commit/19c555836bc31f482e0ea42f08d150110754644f))
* **core.promo:** don't error when the concealer is not loaded ([#767](https://github.com/nvim-neorg/neorg/issues/767)) ([3e09f69](https://github.com/nvim-neorg/neorg/commit/3e09f698b8a4151f2b4f77ee917e4b54388bc97a))
* **dirman:** automatically create the index file if it exists when running `:Neorg index` ([7ce2db5](https://github.com/nvim-neorg/neorg/commit/7ce2db5d2eeec37b4a4c4bc43009c4741c3755da))
* **dirman:** corrected win width and height calculation ([9766bef](https://github.com/nvim-neorg/neorg/commit/9766bef893ec993af9408ea0d44a8f13adbd1e80))
* **dirman:** don't create `index.norg` files in the default workspace when running `:Neorg index` ([c60747f](https://github.com/nvim-neorg/neorg/commit/c60747fcc567d7eb50b16c2007bcfd3a81a934d1))
* **docgen:** `<h6>` tags not being rendered properly ([d0a0da0](https://github.com/nvim-neorg/neorg/commit/d0a0da017135b48c5f4a325bfaedbcdf1ca79fe3))
* **docgen:** could not find module `neorg` ([b68a945](https://github.com/nvim-neorg/neorg/commit/b68a945d6b1a8c2f8c57e0c366f224a162f391e3))
* **docgen:** display listed modules in alphabetical order ([264b451](https://github.com/nvim-neorg/neorg/commit/264b451d74d3e4bc3f856d087070b9dac46f8e90))
* **docgen:** don't double-render numeric values ([35df191](https://github.com/nvim-neorg/neorg/commit/35df1918de321617972f10edd88d9c32cc8102a2))
* **docgen:** don't render description tags if no description is present ([64dc28d](https://github.com/nvim-neorg/neorg/commit/64dc28deea9a7f9c52c3ba5343f1ce3c754a566e))
* **docgen:** don't unnecessarily copy parsers ([46e7936](https://github.com/nvim-neorg/neorg/commit/46e79366775136592540fbe5f0532c001012daa5))
* **docgen:** incorrect wiki paths ([2dbead6](https://github.com/nvim-neorg/neorg/commit/2dbead687053610147161ecda1a908070720731f))
* **docgen:** internal modules that were part of `core.defaults` would not be displayed in the developer modules section ([c3099eb](https://github.com/nvim-neorg/neorg/commit/c3099ebd595d3ec491613c297f4199e316f85853))
* **docgen:** list items with no summary would break rendering ([b69ea57](https://github.com/nvim-neorg/neorg/commit/b69ea57029a2c62e72ea86c93d295102059c58ab))
* **docgen:** lists within lists would never be rendered ([06894bb](https://github.com/nvim-neorg/neorg/commit/06894bb090ad6deb52ba7b19f7e13bbb41385a63))
* **docgen:** make the spacing nicer to look at ([426ca24](https://github.com/nvim-neorg/neorg/commit/426ca246e310a212cef5f6bba367d7ebc84bf70b))
* **docgen:** remove debug log ([8ffcaed](https://github.com/nvim-neorg/neorg/commit/8ffcaed1095743b8474a16f25855b809cf4fe65d))
* **docgen:** this should work now i think (after 20 tries) ([72d3d49](https://github.com/nvim-neorg/neorg/commit/72d3d4981d85fd1114d3185e40cc135a7892a4a4))
* **docgen:** use minimal_init.vim instead of custom_init.vim ([a7cb7ab](https://github.com/nvim-neorg/neorg/commit/a7cb7ab443c24fbd1d9f696abddd91c16f05d842))
* **docgen:** wrong `require` order in `docgen.lua` ([7494b51](https://github.com/nvim-neorg/neorg/commit/7494b51a61cc31371514cb7b2e1ccdf4cef164e2))
* finalize `version_in_code.yml` CI (it works yay) ([db9ed0b](https://github.com/nvim-neorg/neorg/commit/db9ed0b98ba30e2b783ea9da0fddda4cf6b2a47e))
* **metagen:** use `norg_version` ([a5c2553](https://github.com/nvim-neorg/neorg/commit/a5c25531de2790133310ad874fcbbb976d082c78))
* neovim 0.9 vim.treesitter.parse_query deprecation ([#784](https://github.com/nvim-neorg/neorg/issues/784)) ([f4a9759](https://github.com/nvim-neorg/neorg/commit/f4a9759e53fadaece9d93118a0471ddffd05d394))
* **qol.todo_item:** `<C-space>` would not create a new TODO item with ([fc45beb](https://github.com/nvim-neorg/neorg/commit/fc45bebde0fc9811ca4e770e2ba29c791035c885))
* **qol.todo_items:** `<C-space>` would not respect the `create_todo_items` option ([e764b92](https://github.com/nvim-neorg/neorg/commit/e764b92065ddd6bc206aaefd92837be8d0bd8419))
* **qol.todo_items:** TODO attributes would be erroneously assigned multiple times ([1303097](https://github.com/nvim-neorg/neorg/commit/13030974acee5a49dd02c51bedeac104b4f33cb7))
* **summary:** appropriately indent nested entries ([b725a58](https://github.com/nvim-neorg/neorg/commit/b725a58f25525efc1c39a13a09e6cec0c1c0ba4d))
* **version_in_code.yml:** perform checkout in the current directory ([3d7ad5a](https://github.com/nvim-neorg/neorg/commit/3d7ad5aa4b1277ea0f3ebb93ea79179eda5f6e27))
* **version_in_code.yml:** use `fetch-depth` of `0` ([2e8fa52](https://github.com/nvim-neorg/neorg/commit/2e8fa524d2cc73002378875970048d70ae70cc0b))
### Performance Improvements
* **concealer:** don't rerender the whole file on every single BufEnter ([7419cbb](https://github.com/nvim-neorg/neorg/commit/7419cbb7262200dd94df9d398ee1e7f5b9503a50))
### Miscellaneous Chores
* **docgen:** wipe whole wiki on every reparse ([09cb3e6](https://github.com/nvim-neorg/neorg/commit/09cb3e62022ff0f93965800a728ed698db540240))
### ref
* **Makefile:** remove `install_pre_commit` target ([9a497f5](https://github.com/nvim-neorg/neorg/commit/9a497f5e8195e5b974d520f937a946cb8819f320))
* move `core.norg.dirman.summary` -> `core.summary` ([254b6a6](https://github.com/nvim-neorg/neorg/commit/254b6a60b6c9f845400d2bcb0728ee7f38823781))
* **summary:** refactor of the `core.norg.dirman.summary` module ([a2fe3ee](https://github.com/nvim-neorg/neorg/commit/a2fe3eea24c628fa15b7f854cef6c7acaf9ec3f9))
### Code Refactoring
* move all `core.norg.*` modules into `core.*` ([a5824ed](https://github.com/nvim-neorg/neorg/commit/a5824edf6893b8602e560ed7675c0d4174e263e4))
## [2.0.1](https://github.com/nvim-neorg/neorg/compare/v2.0.0...v2.0.1) (2023-02-02)
### Bug Fixes
* completion for TODO items ([#711](https://github.com/nvim-neorg/neorg/issues/711)) ([9184027](https://github.com/nvim-neorg/neorg/commit/91840274112f1286ff5f4063ac6f515683b6dc67))
* **core.norg.journal:** add proper error handling for `vim.loop.fs_scandir` ([4a9a5fe](https://github.com/nvim-neorg/neorg/commit/4a9a5fe13cd454692fc4db0b27783cd005e6be56))
* **treesitter:** don't constantly log errors about erroneous document syntax trees ([9f8b0a1](https://github.com/nvim-neorg/neorg/commit/9f8b0a1759d883fae901579ea83b3ffbfc81a53b))
## [2.0.0](https://github.com/nvim-neorg/neorg/compare/v1.1.1...v2.0.0) (2023-01-06)
### ⚠ BREAKING CHANGES
* **core.norg.qol.toc:** rewrite the table of contents implementation
### Features
* **core.export:** add `NeorgExportComplete` user autocommand ([8b10e61](https://github.com/nvim-neorg/neorg/commit/8b10e61d2f2c5e626849f9a6f8cb4399c28a1a47))
* **core.norg.qol.toc:** add multiple buffer handling logic ([467e311](https://github.com/nvim-neorg/neorg/commit/467e3113c32b8b9f1950a9425aa7b74c13cd88b8))
* **core.norg.qol.toc:** implement `qflist` generation option ([77c5149](https://github.com/nvim-neorg/neorg/commit/77c514970a9d4648b05b2334a060263666f588e2))
* **treesitter:** add `execute_query` function ([310ebaa](https://github.com/nvim-neorg/neorg/commit/310ebaaef538dfd41d02a2903663be05fd38834b))
### Bug Fixes
* **core.ui:** do not modify the user's `scrolloffset` ([bd2e58c](https://github.com/nvim-neorg/neorg/commit/bd2e58cf6f9d42527aa2b692fb187eafa82bd91e))
### Performance Improvements
* further optimize `toc` infirm tag grabber ([5e8d059](https://github.com/nvim-neorg/neorg/commit/5e8d05968e04f7945576d50a6b1576cc722f96fc))
* optimize the `toc` infirm tag grabber code ([a41bd4a](https://github.com/nvim-neorg/neorg/commit/a41bd4a92afefb7e2630b821b59f7707a054baac))
### ref
* **core.norg.qol.toc:** rewrite the table of contents implementation ([c0104fb](https://github.com/nvim-neorg/neorg/commit/c0104fb9faed3b3213e4e275a55a522a299a2d0e))
## [1.1.1](https://github.com/nvim-neorg/neorg/compare/v1.1.0...v1.1.1) (2023-01-05)
### Bug Fixes
* **core.export:** incorrect exporting of code blocks with no parameters ([#701](https://github.com/nvim-neorg/neorg/issues/701)) ([0922815](https://github.com/nvim-neorg/neorg/commit/0922815837a374bd0b2a3cf0477b54e6668e133d))
## [1.1.0](https://github.com/nvim-neorg/neorg/compare/v1.0.1...v1.1.0) (2023-01-05)
### Features
* keep checkboxes with `core.itero` ([#663](https://github.com/nvim-neorg/neorg/issues/663)) ([00532bd](https://github.com/nvim-neorg/neorg/commit/00532bd997d2aef0384ed8f11500d33d229a7e53))
### Bug Fixes
* **core.export.markdown:** incorrectly exported code blocks ([dd2750c](https://github.com/nvim-neorg/neorg/commit/dd2750c0e4d847b67a6ead79ff5043e671cac8bd))
* **folds:** correctly fold document metadata ([adc000a](https://github.com/nvim-neorg/neorg/commit/adc000aadd41e68e4de8a2d1bb90b2e910ffef1b))
## [1.0.1](https://github.com/nvim-neorg/neorg/compare/1.0.0...v1.0.1) (2022-12-23)
### Bug Fixes
* **core.looking-glass:** buffer being closed for no reason after leaving buffer ([828a37f](https://github.com/nvim-neorg/neorg/commit/828a37fe1f008dbfd70cd7fc0f7ba9d0bc75da2a))
* do not run tests for nightly/neorg-main, as GTD is no longer existent ([37f1f9a](https://github.com/nvim-neorg/neorg/commit/37f1f9a44ba65603b5992fc36761c61d921fab78))
================================================
FILE: LICENSE
================================================
GNU GENERAL PUBLIC LICENSE
Version 3, 29 June 2007
Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
Everyone is permitted to copy and distribute verbatim copies
of this license document, but changing it is not allowed.
Preamble
The GNU General Public License is a free, copyleft license for
software and other kinds of works.
The licenses for most software and other practical works are designed
to take away your freedom to share and change the works. By contrast,
the GNU General Public License is intended to guarantee your freedom to
share and change all versions of a program--to make sure it remains free
software for all its users. We, the Free Software Foundation, use the
GNU General Public License for most of our software; it applies also to
any other work released this way by its authors. You can apply it to
your programs, too.
When we speak of free software, we are referring to freedom, not
price. Our General Public Licenses are designed to make sure that you
have the freedom to distribute copies of free software (and charge for
them if you wish), that you receive source code or can get it if you
want it, that you can change the software or use pieces of it in new
free programs, and that you know you can do these things.
To protect your rights, we need to prevent others from denying you
these rights or asking you to surrender the rights. Therefore, you have
certain responsibilities if you distribute copies of the software, or if
you modify it: responsibilities to respect the freedom of others.
For example, if you distribute copies of such a program, whether
gratis or for a fee, you must pass on to the recipients the same
freedoms that you received. You must make sure that they, too, receive
or can get the source code. And you must show them these terms so they
know their rights.
Developers that use the GNU GPL protect your rights with two steps:
(1) assert copyright on the software, and (2) offer you this License
giving you legal permission to copy, distribute and/or modify it.
For the developers' and authors' protection, the GPL clearly explains
that there is no warranty for this free software. For both users' and
authors' sake, the GPL requires that modified versions be marked as
changed, so that their problems will not be attributed erroneously to
authors of previous versions.
Some devices are designed to deny users access to install or run
modified versions of the software inside them, although the manufacturer
can do so. This is fundamentally incompatible with the aim of
protecting users' freedom to change the software. The systematic
pattern of such abuse occurs in the area of products for individuals to
use, which is precisely where it is most unacceptable. Therefore, we
have designed this version of the GPL to prohibit the practice for those
products. If such problems arise substantially in other domains, we
stand ready to extend this provision to those domains in future versions
of the GPL, as needed to protect the freedom of users.
Finally, every program is threatened constantly by software patents.
States should not allow patents to restrict development and use of
software on general-purpose computers, but in those that do, we wish to
avoid the special danger that patents applied to a free program could
make it effectively proprietary. To prevent this, the GPL assures that
patents cannot be used to render the program non-free.
The precise terms and conditions for copying, distribution and
modification follow.
TERMS AND CONDITIONS
0. Definitions.
"This License" refers to version 3 of the GNU General Public License.
"Copyright" also means copyright-like laws that apply to other kinds of
works, such as semiconductor masks.
"The Program" refers to any copyrightable work licensed under this
License. Each licensee is addressed as "you". "Licensees" and
"recipients" may be individuals or organizations.
To "modify" a work means to copy from or adapt all or part of the work
in a fashion requiring copyright permission, other than the making of an
exact copy. The resulting work is called a "modified version" of the
earlier work or a work "based on" the earlier work.
A "covered work" means either the unmodified Program or a work based
on the Program.
To "propagate" a work means to do anything with it that, without
permission, would make you directly or secondarily liable for
infringement under applicable copyright law, except executing it on a
computer or modifying a private copy. Propagation includes copying,
distribution (with or without modification), making available to the
public, and in some countries other activities as well.
To "convey" a work means any kind of propagation that enables other
parties to make or receive copies. Mere interaction with a user through
a computer network, with no transfer of a copy, is not conveying.
An interactive user interface displays "Appropriate Legal Notices"
to the extent that it includes a convenient and prominently visible
feature that (1) displays an appropriate copyright notice, and (2)
tells the user that there is no warranty for the work (except to the
extent that warranties are provided), that licensees may convey the
work under this License, and how to view a copy of this License. If
the interface presents a list of user commands or options, such as a
menu, a prominent item in the list meets this criterion.
1. Source Code.
The "source code" for a work means the preferred form of the work
for making modifications to it. "Object code" means any non-source
form of a work.
A "Standard Interface" means an interface that either is an official
standard defined by a recognized standards body, or, in the case of
interfaces specified for a particular programming language, one that
is widely used among developers working in that language.
The "System Libraries" of an executable work include anything, other
than the work as a whole, that (a) is included in the normal form of
packaging a Major Component, but which is not part of that Major
Component, and (b) serves only to enable use of the work with that
Major Component, or to implement a Standard Interface for which an
implementation is available to the public in source code form. A
"Major Component", in this context, means a major essential component
(kernel, window system, and so on) of the specific operating system
(if any) on which the executable work runs, or a compiler used to
produce the work, or an object code interpreter used to run it.
The "Corresponding Source" for a work in object code form means all
the source code needed to generate, install, and (for an executable
work) run the object code and to modify the work, including scripts to
control those activities. However, it does not include the work's
System Libraries, or general-purpose tools or generally available free
programs which are used unmodified in performing those activities but
which are not part of the work. For example, Corresponding Source
includes interface definition files associated with source files for
the work, and the source code for shared libraries and dynamically
linked subprograms that the work is specifically designed to require,
such as by intimate data communication or control flow between those
subprograms and other parts of the work.
The Corresponding Source need not include anything that users
can regenerate automatically from other parts of the Corresponding
Source.
The Corresponding Source for a work in source code form is that
same work.
2. Basic Permissions.
All rights granted under this License are granted for the term of
copyright on the Program, and are irrevocable provided the stated
conditions are met. This License explicitly affirms your unlimited
permission to run the unmodified Program. The output from running a
covered work is covered by this License only if the output, given its
content, constitutes a covered work. This License acknowledges your
rights of fair use or other equivalent, as provided by copyright law.
You may make, run and propagate covered works that you do not
convey, without conditions so long as your license otherwise remains
in force. You may convey covered works to others for the sole purpose
of having them make modifications exclusively for you, or provide you
with facilities for running those works, provided that you comply with
the terms of this License in conveying all material for which you do
not control copyright. Those thus making or running the covered works
for you must do so exclusively on your behalf, under your direction
and control, on terms that prohibit them from making any copies of
your copyrighted material outside their relationship with you.
Conveying under any other circumstances is permitted solely under
the conditions stated below. Sublicensing is not allowed; section 10
makes it unnecessary.
3. Protecting Users' Legal Rights From Anti-Circumvention Law.
No covered work shall be deemed part of an effective technological
measure under any applicable law fulfilling obligations under article
11 of the WIPO copyright treaty adopted on 20 December 1996, or
similar laws prohibiting or restricting circumvention of such
measures.
When you convey a covered work, you waive any legal power to forbid
circumvention of technological measures to the extent such circumvention
is effected by exercising rights under this License with respect to
the covered work, and you disclaim any intention to limit operation or
modification of the work as a means of enforcing, against the work's
users, your or third parties' legal rights to forbid circumvention of
technological measures.
4. Conveying Verbatim Copies.
You may convey verbatim copies of the Program's source code as you
receive it, in any medium, provided that you conspicuously and
appropriately publish on each copy an appropriate copyright notice;
keep intact all notices stating that this License and any
non-permissive terms added in accord with section 7 apply to the code;
keep intact all notices of the absence of any warranty; and give all
recipients a copy of this License along with the Program.
You may charge any price or no price for each copy that you convey,
and you may offer support or warranty protection for a fee.
5. Conveying Modified Source Versions.
You may convey a work based on the Program, or the modifications to
produce it from the Program, in the form of source code under the
terms of section 4, provided that you also meet all of these conditions:
a) The work must carry prominent notices stating that you modified
it, and giving a relevant date.
b) The work must carry prominent notices stating that it is
released under this License and any conditions added under section
7. This requirement modifies the requirement in section 4 to
"keep intact all notices".
c) You must license the entire work, as a whole, under this
License to anyone who comes into possession of a copy. This
License will therefore apply, along with any applicable section 7
additional terms, to the whole of the work, and all its parts,
regardless of how they are packaged. This License gives no
permission to license the work in any other way, but it does not
invalidate such permission if you have separately received it.
d) If the work has interactive user interfaces, each must display
Appropriate Legal Notices; however, if the Program has interactive
interfaces that do not display Appropriate Legal Notices, your
work need not make them do so.
A compilation of a covered work with other separate and independent
works, which are not by their nature extensions of the covered work,
and which are not combined with it such as to form a larger program,
in or on a volume of a storage or distribution medium, is called an
"aggregate" if the compilation and its resulting copyright are not
used to limit the access or legal rights of the compilation's users
beyond what the individual works permit. Inclusion of a covered work
in an aggregate does not cause this License to apply to the other
parts of the aggregate.
6. Conveying Non-Source Forms.
You may convey a covered work in object code form under the terms
of sections 4 and 5, provided that you also convey the
machine-readable Corresponding Source under the terms of this License,
in one of these ways:
a) Convey the object code in, or embodied in, a physical product
(including a physical distribution medium), accompanied by the
Corresponding Source fixed on a durable physical medium
customarily used for software interchange.
b) Convey the object code in, or embodied in, a physical product
(including a physical distribution medium), accompanied by a
written offer, valid for at least three years and valid for as
long as you offer spare parts or customer support for that product
model, to give anyone who possesses the object code either (1) a
copy of the Corresponding Source for all the software in the
product that is covered by this License, on a durable physical
medium customarily used for software interchange, for a price no
more than your reasonable cost of physically performing this
conveying of source, or (2) access to copy the
Corresponding Source from a network server at no charge.
c) Convey individual copies of the object code with a copy of the
written offer to provide the Corresponding Source. This
alternative is allowed only occasionally and noncommercially, and
only if you received the object code with such an offer, in accord
with subsection 6b.
d) Convey the object code by offering access from a designated
place (gratis or for a charge), and offer equivalent access to the
Corresponding Source in the same way through the same place at no
further charge. You need not require recipients to copy the
Corresponding Source along with the object code. If the place to
copy the object code is a network server, the Corresponding Source
may be on a different server (operated by you or a third party)
that supports equivalent copying facilities, provided you maintain
clear directions next to the object code saying where to find the
Corresponding Source. Regardless of what server hosts the
Corresponding Source, you remain obligated to ensure that it is
available for as long as needed to satisfy these requirements.
e) Convey the object code using peer-to-peer transmission, provided
you inform other peers where the object code and Corresponding
Source of the work are being offered to the general public at no
charge under subsection 6d.
A separable portion of the object code, whose source code is excluded
from the Corresponding Source as a System Library, need not be
included in conveying the object code work.
A "User Product" is either (1) a "consumer product", which means any
tangible personal property which is normally used for personal, family,
or household purposes, or (2) anything designed or sold for incorporation
into a dwelling. In determining whether a product is a consumer product,
doubtful cases shall be resolved in favor of coverage. For a particular
product received by a particular user, "normally used" refers to a
typical or common use of that class of product, regardless of the status
of the particular user or of the way in which the particular user
actually uses, or expects or is expected to use, the product. A product
is a consumer product regardless of whether the product has substantial
commercial, industrial or non-consumer uses, unless such uses represent
the only significant mode of use of the product.
"Installation Information" for a User Product means any methods,
procedures, authorization keys, or other information required to install
and execute modified versions of a covered work in that User Product from
a modified version of its Corresponding Source. The information must
suffice to ensure that the continued functioning of the modified object
code is in no case prevented or interfered with solely because
modification has been made.
If you convey an object code work under this section in, or with, or
specifically for use in, a User Product, and the conveying occurs as
part of a transaction in which the right of possession and use of the
User Product is transferred to the recipient in perpetuity or for a
fixed term (regardless of how the transaction is characterized), the
Corresponding Source conveyed under this section must be accompanied
by the Installation Information. But this requirement does not apply
if neither you nor any third party retains the ability to install
modified object code on the User Product (for example, the work has
been installed in ROM).
The requirement to provide Installation Information does not include a
requirement to continue to provide support service, warranty, or updates
for a work that has been modified or installed by the recipient, or for
the User Product in which it has been modified or installed. Access to a
network may be denied when the modification itself materially and
adversely affects the operation of the network or violates the rules and
protocols for communication across the network.
Corresponding Source conveyed, and Installation Information provided,
in accord with this section must be in a format that is publicly
documented (and with an implementation available to the public in
source code form), and must require no special password or key for
unpacking, reading or copying.
7. Additional Terms.
"Additional permissions" are terms that supplement the terms of this
License by making exceptions from one or more of its conditions.
Additional permissions that are applicable to the entire Program shall
be treated as though they were included in this License, to the extent
that they are valid under applicable law. If additional permissions
apply only to part of the Program, that part may be used separately
under those permissions, but the entire Program remains governed by
this License without regard to the additional permissions.
When you convey a copy of a covered work, you may at your option
remove any additional permissions from that copy, or from any part of
it. (Additional permissions may be written to require their own
removal in certain cases when you modify the work.) You may place
additional permissions on material, added by you to a covered work,
for which you have or can give appropriate copyright permission.
Notwithstanding any other provision of this License, for material you
add to a covered work, you may (if authorized by the copyright holders of
that material) supplement the terms of this License with terms:
a) Disclaiming warranty or limiting liability differently from the
terms of sections 15 and 16 of this License; or
b) Requiring preservation of specified reasonable legal notices or
author attributions in that material or in the Appropriate Legal
Notices displayed by works containing it; or
c) Prohibiting misrepresentation of the origin of that material, or
requiring that modified versions of such material be marked in
reasonable ways as different from the original version; or
d) Limiting the use for publicity purposes of names of licensors or
authors of the material; or
e) Declining to grant rights under trademark law for use of some
trade names, trademarks, or service marks; or
f) Requiring indemnification of licensors and authors of that
material by anyone who conveys the material (or modified versions of
it) with contractual assumptions of liability to the recipient, for
any liability that these contractual assumptions directly impose on
those licensors and authors.
All other non-permissive additional terms are considered "further
restrictions" within the meaning of section 10. If the Program as you
received it, or any part of it, contains a notice stating that it is
governed by this License along with a term that is a further
restriction, you may remove that term. If a license document contains
a further restriction but permits relicensing or conveying under this
License, you may add to a covered work material governed by the terms
of that license document, provided that the further restriction does
not survive such relicensing or conveying.
If you add terms to a covered work in accord with this section, you
must place, in the relevant source files, a statement of the
additional terms that apply to those files, or a notice indicating
where to find the applicable terms.
Additional terms, permissive or non-permissive, may be stated in the
form of a separately written license, or stated as exceptions;
the above requirements apply either way.
8. Termination.
You may not propagate or modify a covered work except as expressly
provided under this License. Any attempt otherwise to propagate or
modify it is void, and will automatically terminate your rights under
this License (including any patent licenses granted under the third
paragraph of section 11).
However, if you cease all violation of this License, then your
license from a particular copyright holder is reinstated (a)
provisionally, unless and until the copyright holder explicitly and
finally terminates your license, and (b) permanently, if the copyright
holder fails to notify you of the violation by some reasonable means
prior to 60 days after the cessation.
Moreover, your license from a particular copyright holder is
reinstated permanently if the copyright holder notifies you of the
violation by some reasonable means, this is the first time you have
received notice of violation of this License (for any work) from that
copyright holder, and you cure the violation prior to 30 days after
your receipt of the notice.
Termination of your rights under this section does not terminate the
licenses of parties who have received copies or rights from you under
this License. If your rights have been terminated and not permanently
reinstated, you do not qualify to receive new licenses for the same
material under section 10.
9. Acceptance Not Required for Having Copies.
You are not required to accept this License in order to receive or
run a copy of the Program. Ancillary propagation of a covered work
occurring solely as a consequence of using peer-to-peer transmission
to receive a copy likewise does not require acceptance. However,
nothing other than this License grants you permission to propagate or
modify any covered work. These actions infringe copyright if you do
not accept this License. Therefore, by modifying or propagating a
covered work, you indicate your acceptance of this License to do so.
10. Automatic Licensing of Downstream Recipients.
Each time you convey a covered work, the recipient automatically
receives a license from the original licensors, to run, modify and
propagate that work, subject to this License. You are not responsible
for enforcing compliance by third parties with this License.
An "entity transaction" is a transaction transferring control of an
organization, or substantially all assets of one, or subdividing an
organization, or merging organizations. If propagation of a covered
work results from an entity transaction, each party to that
transaction who receives a copy of the work also receives whatever
licenses to the work the party's predecessor in interest had or could
give under the previous paragraph, plus a right to possession of the
Corresponding Source of the work from the predecessor in interest, if
the predecessor has it or can get it with reasonable efforts.
You may not impose any further restrictions on the exercise of the
rights granted or affirmed under this License. For example, you may
not impose a license fee, royalty, or other charge for exercise of
rights granted under this License, and you may not initiate litigation
(including a cross-claim or counterclaim in a lawsuit) alleging that
any patent claim is infringed by making, using, selling, offering for
sale, or importing the Program or any portion of it.
11. Patents.
A "contributor" is a copyright holder who authorizes use under this
License of the Program or a work on which the Program is based. The
work thus licensed is called the contributor's "contributor version".
A contributor's "essential patent claims" are all patent claims
owned or controlled by the contributor, whether already acquired or
hereafter acquired, that would be infringed by some manner, permitted
by this License, of making, using, or selling its contributor version,
but do not include claims that would be infringed only as a
consequence of further modification of the contributor version. For
purposes of this definition, "control" includes the right to grant
patent sublicenses in a manner consistent with the requirements of
this License.
Each contributor grants you a non-exclusive, worldwide, royalty-free
patent license under the contributor's essential patent claims, to
make, use, sell, offer for sale, import and otherwise run, modify and
propagate the contents of its contributor version.
In the following three paragraphs, a "patent license" is any express
agreement or commitment, however denominated, not to enforce a patent
(such as an express permission to practice a patent or covenant not to
sue for patent infringement). To "grant" such a patent license to a
party means to make such an agreement or commitment not to enforce a
patent against the party.
If you convey a covered work, knowingly relying on a patent license,
and the Corresponding Source of the work is not available for anyone
to copy, free of charge and under the terms of this License, through a
publicly available network server or other readily accessible means,
then you must either (1) cause the Corresponding Source to be so
available, or (2) arrange to deprive yourself of the benefit of the
patent license for this particular work, or (3) arrange, in a manner
consistent with the requirements of this License, to extend the patent
license to downstream recipients. "Knowingly relying" means you have
actual knowledge that, but for the patent license, your conveying the
covered work in a country, or your recipient's use of the covered work
in a country, would infringe one or more identifiable patents in that
country that you have reason to believe are valid.
If, pursuant to or in connection with a single transaction or
arrangement, you convey, or propagate by procuring conveyance of, a
covered work, and grant a patent license to some of the parties
receiving the covered work authorizing them to use, propagate, modify
or convey a specific copy of the covered work, then the patent license
you grant is automatically extended to all recipients of the covered
work and works based on it.
A patent license is "discriminatory" if it does not include within
the scope of its coverage, prohibits the exercise of, or is
conditioned on the non-exercise of one or more of the rights that are
specifically granted under this License. You may not convey a covered
work if you are a party to an arrangement with a third party that is
in the business of distributing software, under which you make payment
to the third party based on the extent of your activity of conveying
the work, and under which the third party grants, to any of the
parties who would receive the covered work from you, a discriminatory
patent license (a) in connection with copies of the covered work
conveyed by you (or copies made from those copies), or (b) primarily
for and in connection with specific products or compilations that
contain the covered work, unless you entered into that arrangement,
or that patent license was granted, prior to 28 March 2007.
Nothing in this License shall be construed as excluding or limiting
any implied license or other defenses to infringement that may
otherwise be available to you under applicable patent law.
12. No Surrender of Others' Freedom.
If conditions are imposed on you (whether by court order, agreement or
otherwise) that contradict the conditions of this License, they do not
excuse you from the conditions of this License. If you cannot convey a
covered work so as to satisfy simultaneously your obligations under this
License and any other pertinent obligations, then as a consequence you may
not convey it at all. For example, if you agree to terms that obligate you
to collect a royalty for further conveying from those to whom you convey
the Program, the only way you could satisfy both those terms and this
License would be to refrain entirely from conveying the Program.
13. Use with the GNU Affero General Public License.
Notwithstanding any other provision of this License, you have
permission to link or combine any covered work with a work licensed
under version 3 of the GNU Affero General Public License into a single
combined work, and to convey the resulting work. The terms of this
License will continue to apply to the part which is the covered work,
but the special requirements of the GNU Affero General Public License,
section 13, concerning interaction through a network will apply to the
combination as such.
14. Revised Versions of this License.
The Free Software Foundation may publish revised and/or new versions of
the GNU General Public License from time to time. Such new versions will
be similar in spirit to the present version, but may differ in detail to
address new problems or concerns.
Each version is given a distinguishing version number. If the
Program specifies that a certain numbered version of the GNU General
Public License "or any later version" applies to it, you have the
option of following the terms and conditions either of that numbered
version or of any later version published by the Free Software
Foundation. If the Program does not specify a version number of the
GNU General Public License, you may choose any version ever published
by the Free Software Foundation.
If the Program specifies that a proxy can decide which future
versions of the GNU General Public License can be used, that proxy's
public statement of acceptance of a version permanently authorizes you
to choose that version for the Program.
Later license versions may give you additional or different
permissions. However, no additional obligations are imposed on any
author or copyright holder as a result of your choosing to follow a
later version.
15. Disclaimer of Warranty.
THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
16. Limitation of Liability.
IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
SUCH DAMAGES.
17. Interpretation of Sections 15 and 16.
If the disclaimer of warranty and limitation of liability provided
above cannot be given local legal effect according to their terms,
reviewing courts shall apply local law that most closely approximates
an absolute waiver of all civil liability in connection with the
Program, unless a warranty or assumption of liability accompanies a
copy of the Program in return for a fee.
END OF TERMS AND CONDITIONS
How to Apply These Terms to Your New Programs
If you develop a new program, and you want it to be of the greatest
possible use to the public, the best way to achieve this is to make it
free software which everyone can redistribute and change under these terms.
To do so, attach the following notices to the program. It is safest
to attach them to the start of each source file to most effectively
state the exclusion of warranty; and each file should have at least
the "copyright" line and a pointer to where the full notice is found.
<one line to give the program's name and a brief idea of what it does.>
Copyright (C) <year> <name of author>
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
Also add information on how to contact you by electronic and paper mail.
If the program does terminal interaction, make it output a short
notice like this when it starts in an interactive mode:
<program> Copyright (C) <year> <name of author>
This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
This is free software, and you are welcome to redistribute it
under certain conditions; type `show c' for details.
The hypothetical commands `show w' and `show c' should show the appropriate
parts of the General Public License. Of course, your program's commands
might be different; for a GUI interface, you would use an "about box".
You should also get your employer (if you work as a programmer) or school,
if any, to sign a "copyright disclaimer" for the program, if necessary.
For more information on this, and how to apply and follow the GNU GPL, see
<https://www.gnu.org/licenses/>.
The GNU General Public License does not permit incorporating your program
into proprietary programs. If your program is a subroutine library, you
may consider it more useful to permit linking proprietary applications with
the library. If this is what you want to do, use the GNU Lesser General
Public License instead of this License. But first, please read
<https://www.gnu.org/licenses/why-not-lgpl.html>.
================================================
FILE: Makefile
================================================
documentation:
nvim --headless -u docgen/minimal_init.vim -c "cd ./docgen" -c "source init.lua" -c 'qa'
local-documentation:
nvim --headless -c "cd ./docgen" -c "source init.lua" -c 'qa'
format:
stylua -v --verify .
check:
nix flake check
shell:
nix develop
integration-test:
nix run ".#integration-test"
test:
LUA_PATH="$(shell luarocks path --lr-path --lua-version 5.1 --local)" \
LUA_CPATH="$(shell luarocks path --lr-cpath --lua-version 5.1 --local)" \
luarocks test --local --lua-version 5.1
================================================
FILE: README.md
================================================
<div align="center">
<img src="res/neorg.svg" width=300>
# Neorg - An Organized Future
<a href="https://neovim.io">  </a>
<a href="https://chat.neorg.org">  </a>
<a href="https://discord.gg/T6EgTAX7ht">  </a>
<a href="/LICENSE"> </a>
<a href="https://dotfyle.com/plugins/nvim-neorg/neorg">  </a>
Your New Life Organization Tool - All in Lua
[Tutorial](#-tutorial)
•
[Roadmap](/ROADMAP.md)
•
[Installation](#-installation)
•
[Further Learning](#-further-learning)
<br>
[Credits](#credits)
•
[Support](#support)
</div>
<div align="center">
<br>
**:warning: Neorg `9.0.0` has introduced some breaking changes! Please see [this blog post](https://vhyrro.github.io/posts/neorg-9-0-0/) on what changed.**
## Summary
</div>
Neorg (_Neo_ - new, _org_ - organization) is a Neovim plugin designed to reimagine organization as you know it.
Grab some coffee, start writing some notes, let your editor handle the rest.
### What is Neorg?
Neorg is an all-encompassing tool based around structured note taking, project and task management, time
tracking, slideshows, writing typeset documents and much more. The premise is that all of these features are
built on top of a single base file format (`.norg`), which the user only has to learn once to gain access to
all of Neorg's functionality.
Not only does this yield a low barrier for entry for new users it also ensures that all features are integrated with each
other and speak the same underlying language. The file format is built to be expressive and easy to parse,
which also makes `.norg` files easily usable anywhere outside of Neorg itself.
A good way of thinking about Neorg is as a plaintext environment which can be adapted to a variety of use cases.
If a problem can be represented using raw text, it can be solved using Neorg.
###### :exclamation: **IMPORTANT**: Neorg is young software. We consider it stable however be prepared for occasional breaking workflow changes. Make sure to pin the version of Neorg you'd like to use and only update when you are ready.
## 🌟 Tutorial
A video tutorial may be found on Youtube:
<div>
<a href="https://www.youtube.com/watch?v=NnmRVY22Lq8&list=PLx2ksyallYzVI8CN1JMXhEf62j2AijeDa&index=1">
<img src="https://img.youtube.com/vi/NnmRVY22Lq8/0.jpg" style="width:75%;">
</a>
</div>
## 📦 Installation
Neorg's setup process is slightly more complex than average, so we encourage you to be patient :)
**Neorg requires Neovim 0.10 or above to function. After you're done with the
installation process, run `:checkhealth neorg` to see if everything's
correct!**
### `neorg-kickstart`
Not bothered to set up Neovim on your own? Check out our [kickstart config](https://github.com/nvim-neorg/neorg/wiki/Kickstart)
which will get you up and running with Neorg without any prior Neovim configuration knowledge.
### `rocks.nvim`
One way of installing Neorg is via [rocks.nvim](https://github.com/nvim-neorocks/rocks.nvim).
<details>
<summary>Installation snippet.</summary>
- Run `:Rocks install rocks-config.nvim` (if you don't have it already!).
- Run `:Rocks install neorg`.
- From the root of your configuration (`~/.config/nvim/` on unix-like systems), create a `lua/plugins/neorg.lua` file and place the following content inside:
```lua
require("neorg").setup()
```
<!-- TODO: rewrite this section once a new luarocks release is made, as it will automatically download nvim-treesitter-legacy-api as a dependency -->
For the time being you also need `nvim-treesitter` installed.
- `:Rocks install nvim-treesitter-legacy-api`
- Just like the `neorg.lua` file, create a `lua/plugins/treesitter.lua` file and place the following content inside:
```lua
require("nvim-treesitter.configs").setup({
highlight = {
enable = true,
},
})
```
The last three steps will eventually not be required to run Neorg.
</details>
### `lazy.nvim`
To install Neorg via lazy, first ensure that you have `luarocks` installed on your system.
On Linux/Mac, this involves installing using your system's package manager. On Windows, consider
the [Lua for Windows](https://github.com/rjpcomputing/luaforwindows) all-in-one package.
<details>
<summary>Click for installation snippet.</summary>
```lua
{
"nvim-neorg/neorg",
lazy = false, -- Disable lazy loading as some `lazy.nvim` distributions set `lazy = true` by default
version = "*", -- Pin Neorg to the latest stable release
config = true,
}
```
While lazy [supports lazy-loading upon specific commands and
filetypes](https://lazy.folke.io/spec#spec-lazy-loading), it can cause neorg to load incorrectly,
leading to a 'broken' plugin. Lazy load at your own risk, and disable lazy loading as your first
debugging step.
</details>
### `packer.nvim`
Neorg can be installed purely via luarocks on packer, pulling in all required dependencies in the process.
It is not recommended to use packer as it is now unmaintained.
<details>
<summary>Click for installation snippet.</summary>
```lua
use {
"nvim-neorg/neorg",
rocks = { "lua-utils.nvim", "nvim-nio", "nui.nvim", "plenary.nvim", "pathlib.nvim", "nvim-treesitter-legacy-api" },
tag = "*", -- Pin Neorg to the latest stable release
config = function()
require("neorg").setup()
end,
}
```
</details>
### Other Plugin Managers
Because of the complexities of `luarocks`, we are choosing not to support other plugin managers for the time
being. It is actively on our TODO list, however!
## 📚 Further Learning
After you have installed Neorg, we recommend you head over to either the Youtube tutorial series or to the [wiki](https://github.com/nvim-neorg/neorg/wiki)!
## Credits
Massive shoutouts go to all the contributors actively working on the project together to form a fantastic
integrated workflow:
- [mrossinek](https://github.com/mrossinek) - for basically being my second brain when it comes to developing new features
and adding new syntax elements
- [danymat](https://github.com/danymat) - for creating the excellent foundations for the up and coming GTD system
And an extra thank you to:
- [Binx](https://github.com/dvchoudh) - for making that gorgeous logo for free!
- [bandithedoge](https://github.com/bandithedoge) - for converting the PNG version of the logo into SVG form
## Support
Love what I do? Want to see more get done faster? Want to support future projects? Any sort of support is always
heartwarming and fuels the urge to keep going :heart:. You can show support here:
- [Buy me a coffee!](https://buymeacoffee.com/vhyrro)
- [Support me via Github Sponsors](https://github.com/sponsors/vhyrro)
- [Support me on Patreon](https://patreon.com/vhyrro)
Immense thank you to all of the sponsors of my work!
<div align="center">
<!-- sponsors --><a href="https://github.com/vsedov"><img src="https://github.com/vsedov.png" width="60px" alt="vsedov" /></a> <a href="https://github.com/molleweide"><img src="https://github.com/molleweide.png" width="60px" alt="molleweide" /></a> <a href="https://github.com/danymat"><img src="https://github.com/danymat.png" width="60px" alt="danymat" /></a> <a href="https://github.com/jgregoire"><img src="https://github.com/jgregoire.png" width="60px" alt="jgregoire" /></a> <a href="https://github.com/bottd"><img src="https://github.com/bottd.png" width="60px" alt="bottd" /></a> <a href="https://github.com/kvodenicharov"><img src="https://github.com/kvodenicharov.png" width="60px" alt="kvodenicharov" /></a> <!-- sponsors -->
</div>
================================================
FILE: ROADMAP.md
================================================
<div align="center">
# Neorg Roadmap
</div>
Given the rapid growth and adoption of Neorg it's critical that a development plan is
established to not only help the development team keep track of progress but to also
facilitate and encourage contributions from the flourishing community.
This file is written and maintained in Markdown for easy viewing on GitHub.
It will be switched to a `.norg` file when possible.
# Neorg
## Miscellaneous
- [ ] Make `core.clipboard.code-blocks` work with a visual selection.
- [x] Reimplement the `core.maneouvre` module, which has been deprecated since `1.0`.
- [ ] The `a` and `b` commands in the hop module are not implemented.
- [ ] Readd colouring to TODO items.
## Workflow
- [x] [The Calendar UI](#calendar)
- [ ] The GTD Methodology
- [ ] Zettelkasten
- [ ] The `sc-im`esque Table Editor
To achieve the above, a set of cross-platform tools must be initially developed.
For the motivation behind this, see the [external tools](#external-tooling) section.
## Documentation
- [ ] Develop and ship a Neorg landing page with documentation, presumably with docasaurus.
- [x] Provide a written tutorial on how to get started with Neorg.
- [ ] Provided a tutorial on how to develop for Neorg (modules, events, etc.).
- [ ] Provide a dropdown in the wiki which will display a module's entire configuration as a lua snippet.
### Calendar
The calendar is a planned sophisticated and flexible tool for selecting a date.
While it sounds rather trivial, the calendar is the main user interaction for any
date related operation. Because of this, there are many components to a calendar.
At its core the calendar is simply supposed to allow the user to select a date.
This is such a vast concept however that the calendar should be able to handle a variety
of situations/contexts.
#### Context Switching
Depending on the preferred context, the calendar should be able to work in four
major views - `DAILY`, `WEEKLY`, `MONTHLY` and `YEARLY`. Each mode has a
different layout fit for the task at hand, and displays varying amounts of
information based on said view.
- The daily view displays only the current day, but allows you to quickly select an hour in that day.
Moving left or right moves one hour forward or backward, respectively.
The view is vertical, meaning an hour takes up a horizontal bar and they are stacked top to bottom starting
from midnight.
- The weekly view displays all 7 days of the week. Moving forwards or backwards moves one day forward
or backward, respectively. This view is also vertical, where each day takes up a single bar
of the view.
- The monthly view shows all days of the month in a horizontally rendered fashion.
It is the default mode if none is specified.
- The yearly view is meant to summarize more than it is supposed to serve any function.
The details of this view have not yet been fully drawn out.
As with all things Neorg, other modules should be free to create their own
views via an API. Apart from just creating views, any module should be free to
add "custom data" to the view, which the view should be able to handle
appropriately through a set of default API functions. An example of this may be
the GTD module, which could display all the tasks for a day in the daily view, or
it could highlight a day as red in the monthly view if there are urgent tasks
that have not been yet completed.
#### Keybinds
The user experience comes first - the keybinds should be as close as possible to vim, with
slight deviations if the keybinds hinder the "mnemonic" keybind model, where a sequence of words
(e.g. `delete around word`) can be converted to a set of keybinds (`daw`).
# Cross-Compatibility
Walled gardens? No thanks. Conversion from (and to) `.norg` and Neorg workflows should be
hassle-free.
- [ ] [Pandoc](https://pandoc.org/) integration. A pandoc parser (or lua filter) would be super
useful to convert to and from the `.norg` file format. Work has begun (but is currently stalled)
in the following [PR](https://github.com/nvim-neorg/neorg/pull/684). There is also an incomplete
pandoc parser written in Haskell [here](https://github.com/Simre1/neorg-haskell-parser), so if you
have some Haskell skills then this is your time to help out! :)
- [ ] Inbuilt upgraders from `.org` to `.norg`, and vice versa.
Org and markdown are the most common formats to convert to `.norg`, and whereas markdown can
be handled just fine by pandoc, org may need some extra fine tuning to work effectively. We'd
like for Neorg to be able to "understand" workflows within emacs's `org-mode`, such as the
inbuilt agenda view and others, and convert them into the Neorg-appropriate counterpart.
# External Tooling
External tooling is a great way to help Neorg see adoption in spaces other than Neovim. While the
best features will remain within the Neorg plugin for Neovim, writing tools for `.norg` and for
Neorg should not be difficult nor discouraging. As a result, we'll create and maintain a set of
embeddable-anywhere tools. These include:
- [ ] Parsers in several languages - the first step of supporting Neorg is supporting its underlying
file format, `.norg`. Because Norg is a well-standardized format, many parsers can be created
for it without forming annoying "dialects". Currently, the most well supported parser is the
`tree-sitter` parser, which is embeddable essentially anywhere thanks to its library being written
in C.
Apart from [`tree-sitter`](https://github.com/nvim-neorg/tree-sitter-norg), work-in-progress
parsers can be found for many languages like [`rust`](https://github.com/max397574/rust-norg),
[`zig`](https://github.com/vhyrro/zig-norg),
[`haskell`](https://github.com/Simre1/neorg-haskell-parser) and
[`julia`](https://github.com/klafyvel/Norg.jl)!
- [x] Directory Manager and File Aggregator - workspaces are a pretty fundamental concept within
Neorg, and writing a tool that can efficiently manage and manipulate enormous collections
of notes will be critical for any Neorg-like tool.
- [x] Multithreaded parsing library - note collections can get big, like really big. Parsing
all of these on a single thread could take even minutes. Having a good multithreaded
parsing library will help a lot.
- [x] Norgopolis and its related modules - norgopolis servers as a router for all server side
logic, including the database, for the multithreaded Treesitter parser, as well as for
managing active workspaces. Many clients may connect to this server, establishing a single
source of truth for any `n` amount of clients.
- [x] SurrealDB - Neorg's preferred backend for execution is SurrealDB, a modern multi-model
database. It was specifically chosen because, apart from just being able to store data in a relational
format (like sqlite), it also has the ability of creating and operating on nodes like a graph database.
This allows for lighting fast lookups of e.g. links, tasks and/or inline metadata in the file.
- [ ] GTD - this library would form the backend for the "Getting Things Done" methodology.
It would do all the heavy lifting, including managing notes, contexts and a bit more.
Afterwards all it takes is to write a frontend (the UI) in the application of your choice to
fully support Neorg's GTD capabilities.
- [ ] Zettelkasten - similarly to GTD, the backend for zettelkasten will be implemented as a
library. This library would primarily handle backlinks, which are painfully slow to track natively
in Lua, which runs on a single thread.
A logistics question - how do these libraries play with Neorg in Neovim itself?
All of the libaries we mentioned will be written in Rust, and via `cbindgen` we will
generate `.o`/`.so` library files that may be used anywhere, including Neovim.
Lua has great support for importing shared library objects, so all that it takes
is a Github action that compiles e.g. the `GTD` backend library, pulling in all dependencies,
packing it into a small `.so`, and then shipping it directly with Neorg!
# Mobile Application
A mobile tool for Neorg would greatly increase it's adoption range thanks to portability. Such a
mobile application could utilize all of the [external tools](#external-tooling) written by us
to ensure that it's consistent in behaviour with all of the other Neorg tools in the ecosystem.
Features of a mobile application would include:
- [ ] A synchronisation mechanism between the mobile device and any other end devices.
- [ ] A fast note capturing mechanism - if you have a random idea while e.g. going on a walk,
writing it down should only be two clicks away.
This note capturing mechanism should ideally be powered by the [GTD](#external-tooling)
library.
- [ ] A pleasant UX - phone screens are fairly small, so UI fluidness and the way notes/tasks
are displayed should be as effective as possible.
# Artificial Intelligence
Do not worry, we're not a new startup overhyping AI thinking it will change the world. Also don't fret, we
will not use AI like most companies as a tactic to collect and send information to servers for data
analysis.
We strongly believe that for a specific and specialized subset of tasks artificial intelligence (or,
more specifically, natural language processing tools) are a novel way to aid in note taking. All
models shipped by Neorg would not be in the main Neorg package, but as addon plugins. These addon
plugins would ship with the model placed locally on your machine, and no contact with an external
server would be required to use these models.
There are currently only three use cases that we would like to use natural language processing for, and these are:
- [ ] Speech to text recognition for the [mobile application](#mobile-application).
- [ ] Automatic detection of contexts for a given GTD task. This takes away the manual process of having to
assign contexts for each of your tasks.
- [ ] Zettelkasten sorters - because an NLP model has a good understanding of loosely similar
information and topics, it could be much more effective at categorizing, reordering and linking
zettels than a traditional programmatic algorithm.
All of these plans are for the very far future, long after [GTD and Zettelkasten](#workflow) are complete. However,
if you have experience in training such models or would like to help, then do not hesitate!
================================================
FILE: doc/cheatsheet.norg
================================================
* Your Quick Neorg Guide
This is a cheatsheet that quickly lets you get a grip on the Norg syntax.
It is by no means exhaustive, but quickly gets you up to speed.
*Press `gO` for a Table of Contents*.
* Structure
** Headings
You've already seen them in action in this guide.
@code norg
* Heading 1
** Heading 2
*** Heading 3
**** And so on...
@end
Norg supports infinite heading levels, but you'll find that Neorg caps out at six.
You can still go higher, but the parser will treat it as if it were a level six heading.
** Reverse Headings
Need to go back a level? `---` takes you back a single level, while `===` closes all headings.
@code norg
* Heading 1
** Heading 2
Part of heading 2.
---
Part of heading 1.
*** Heading 3
**** Heading 4
Part of heading 4.
===
Not part of any heading.
@end
** Lists
*** Unordered Lists
@code norg
- List item.
-- Nested list item
-- Also nested.
- Next list item.
@end
*** Ordered Lists
@code norg
~ List item.
~~ Nested list item.
~~ Also nested.
~ Next list item.
@end
** Code Blocks
Run `:Neorg toggle-concealer` to see the raw syntax.
@code
This is literally an empty code block.
@end
@code lua
print("If you have the lua treesitter parser installed, this will be highlighted as lua.")
print("If not, run `:TSInstall lua`.")
@end
* Inline Markup
** Styling
To see the syntax raw, run `:setlocal conceallevel=0`.
Set it back to `2` later for a more concise reading experience :)
@code norg
This is *bold*.
This is /italic/.
This is _underline_.
This is -strikethrough-.
This is a spoiler: !org-mode is a bozo!, to see the content you either enter insert mode on this line (good luck) or toggle the concealer off.
This is a `verbatim object, you can't put *markup* in here!`.
%This is a comment, and you never see it in your exported output.%
This is _underline, /italic/ and *-strikethrough bold-*_. Mix and match how you see fit, just make sure
you're not trying to put markup inside of a verbatim object!
@end
For the mathematical nerds:
@code norg
This is ^superscript^ (it won't render properly in Neovim).
This is ,subscript, (same as above).
This is inline maths: $f(x) = supports \\LaTeX$, but beware! You have to escape backslashes like in the example.
Because of this, you should always use the above syntax for very simple things, and the "rigid"
syntax for more complicated expressions: $|\int_0^t d(\ln{S}) = ...|$ (notice the `\|` and the use of single backslashes).
@end
*** Styling with a Pipe
As shown in the maths example above, you can use the pipe `\|` to allow arbitrary whitespace within the
markup. You also don't have to escape backslashes!
@code norg
/ this is not allowed /
/| but this is fine!! |/
@end
** Links
*NOTE: attempting to hit enter on the links will not work.*
*** Links to URLs
@code norg
{https://github.com/nvim-neorg/neorg}
{file:///home/vhyrro/top-secret.txt} - as long as your OS supports your URI (`file://`) it'll work in Neorg
@end
*** Links to Objects
To link to an object, you use its prefix and its name. The name part is
*only word and punctuation sensitive*. Case and whitespace are ignored.
@code norg
{*** styling, but extended} - valid
{*** styling,butextended} - valid
{*** styling but extended} - invalid, no `,` punctuation
@end
*** Links to non-norg Files
@code norg
{/ myfile.txt}
{/ myfile.txt:43} - line 43 of `myfile.txt`
@end
*** Links with Descriptions
@code norg
{* some heading}[my custom description]
@end
*** Links to Anything
Don't care about what object type you're linking to?
Just use the `#` character.
@code norg
{# anything with this title}
@end
*** Links across Files
Take your link but prefix it with `:filename:` (without the `.norg` extension).
@code norg
{:dir/file:* Heading in that file}
{:$/index.norg:* Heading in that file} - `$` signifies the path of the current workspace
{:$notes/index.norg:* Heading in that file} - you can also link to other workspaces
@end
** Anchors
It's like links, but the syntax is reversed. Anchors can save you from writing the same thing countless times.
@code norg
This is a link to [my site]{https://very.long.link.to.my.boring.site}. `<- Works just like a normal link with a description`
Be sure to reference [my site] if you're interested! `<- Takes you to the correct site`
@end
As long as the name inbetween the square brackets is the same you'll be linked to the correct place.
* Tasks
You can assign a task status to anything by adding a `|( )|`.
@code norg
- ( ) Here's a classical TODO item.
* (x) Here's a heading with a done TODO state. Curious.
@end
All supported states:
@code norg
( ) Undone -> not done yet
(x) Done -> done with that
(?) Needs further input
(!) Urgent -> high priority task
(+) Recurring task with children
(-) Pending -> currently in progress
(=) Task put on hold
(_) Task cancelled (put down)
@end
===
#comment
vim:tw=100:ft=norg:norl:conceallevel=2:concealcursor=nv:
================================================
FILE: doc/neorg.norg
================================================
@document.meta
title: Neorg help-page
description: The Neorg vim help-page
author: The Neorg Community
categories: docs
created: 2021-09-05
version: 0.1
@end
.toc
* The `.norg` File Format
If you find the {https://github.com/nvim-neorg/norg-specs/blob/main/1.0-specification.norg}[spec]
too long and want to jump-start your Neorg skills, you've come to the right place!
NOTE: If you have `core.concealer` enabled, then be sure to run `:Neorg toggle-concealer`
any time you want to see the raw markup.
This document automatically disables the hiding of characters for clarity.
If you would like to reenable this, run `:set conceallevel=2`.
** Basic Markup
Here is how you can do very basic markup. First you see it raw, then rendered:
- *bold*
- /italic/
- _underline_
- -strikethrough-
- !spoiler!
- `inline code`
- ^superscript^ (when nested into `subscript`, will highlight as an error)
- ,subscript, (when nested into `superscript`, will highlight as an error)
- $f(x) = y$ (see also {# Math})
- &variable& (see also {# Variables})
- %inline comment%
This also immediately shows you how to escape a special character using the backslash, \\.
Adding the [pipe]{:cheatsheet:*** Styling with a Pipe} modifier inside any markup
characters allows you to include white space before and after the markup characters, as well as
ignore escape characters inside.
Example: *| look ma, white space! |*
** Nesting
Neorg generally does *NOT* care about indentation! 🎉
Thus, nesting is done via repeating modifiers like you are used to from Markdown headings.
Note, that this allows you to start at an arbitrary nesting level if you so desire!
*** Unordered lists
- Unordered list level 1
-- Unordered list level 2
--- Unordered list level 3
---- Unordered list level 4
----- Unordered list level 5
------ Unordered list level 6
*** Ordered lists
~ Ordered list level 1
~~ Ordered list level 2
~~~ Ordered list level 3
~~~~ Ordered list level 4
~~~~~ Ordered list level 5
~~~~~~ Ordered list level 6
*** Tasks
- ( ) Undone -> not done yet
- (x) Done -> done with that
- (?) Needs further input
- (!) Urgent -> high priority task
- (+) Recurring task with children
- (-) Pending -> currently in progress
- (=) Task put on hold
- (_) Task cancelled (put down)
The task modifier can be placed on any detached modifier, including
headings, definitions, footnotes etc. to track their state.
*** Quotes
> 1. level quote
>> 2. level quote
>>> 3. level quote
>>>> 4. level quote
>>>>> 5. level quote
>>>>>> 6. level quote
*** Headings
You already saw headings up to the third out of six levels. I assume by now you know how they
work. But now...
**** ... prepare to have your mind blown!
Because here is something very special and unique to Neorg:
***** Indentation reversion
As you would expect, this paragraph belongs to the fifth level heading.
****** Final heading level
And this paragraph belongs to the sixth level. But by using the following modifier:
---
We can move this text to the fifth level again! 🤯
---
So using 3 or more `-` signs not followed by anything, you move *one* level backwards in the
indentation (*NOTE:* this should actually be `2` or more signs as per the latest spec revision,
but the parser is in the process of being updated).
Doing the same but with `=` characters instead all heading levels will be closed and
you will be dropped back to the root level of the document!
** Horizontal Lines
You can also place horizontal lines using three or more underscores like so:
___
This will never affect the indentation level of the following text, but it will immediately
terminate the paragraph which is why this is a new paragraph despite the absence of two (or more)
consecutive new lines.
** Links
For more info on links check the
{https://github.com/nvim-neorg/norg-specs/blob/main/1.0-specification.norg#L1340}[spec].
*** Link Targets
The following things can be used as link /targets/:
- `* Heading1` (+ nesting levels)
- `^ Footnote`
- `$ Definition`
- `# magic` (any of the above)
- `:path:# magic` (target in another norg file at a given path)
- `:path:` (another norg file at a given path without specific target)
- `/ path` (a non-norg file at a given path)
- `https://github.com` (a URL)
- `file:///some/path` (any file, opened via `(xdg-)open`)
Any of the paths used in `:path:` or `/ path` can be formatted in either of the following ways:
- `:path/to/norg/file:` relative to the file which contains this link
- `:/path/from/root:` absolute w.r.t. the entire filesystem
- `:~/path/from/user/home:` relative to the user's home directory (e.g. `/home/user` on Linux machines)
- `:../path/to/norg/file:` these paths also understand `../`
- `:$/path/from/current/workspace:` relative to current workspace root
- `:$gtd/path/in/gtd/workspace:` relative to the root of the workspace called `gtd`.
** There are multiple ways of using links:
*** Pure link location
An inline link to {* my heading}.
The text used for this link can be inferred from the /target/.
If it is not a norg-target, this falls back to the URL or filename, etc.
*** Custom link text
An inline link {* my heading}[with custom text].
This links to the same marker but uses a custom link text.
*** Anchors
A link to [our website].
Be sure to check out [our website]{https://github.com/nvim-neorg/neorg}!
The standalone link /text/ is called an *anchor declaration*.
It requires an *anchor definition* (last line in the code block) which defines where an anchored link points to.
This is very useful when you find yourself refering to the same target often.
*** Examples:
{* Heading 1}
{** Heading 2}
{*** Heading 3}
{**** Heading 4}
{***** Heading 5}
{****** Heading 6}
{******* Heading level above 6}
{# Generic}
{$ Definition}
{^ Footnote}
{:norg_file:}
{:norg_file:* Heading 1}
{:norg_file:** Heading 2}
{:norg_file:*** Heading 3}
{:norg_file:**** Heading 4}
{:norg_file:***** Heading 5}
{:norg_file:****** Heading 6}
{:norg_file:******* Heading level above 6}
{:norg_file:# Generic}
{:norg_file:* Marker}
{:norg_file:$ Definition}
{:norg_file:^ Footnote}
{https://github.com/}
{file:///dev/null}
{/ external_file.txt}
Note that the following links are malformed:
{:norg_file:/ external_file.txt}
{:norg_file:https://github.com/}
** Definitions
There are two kinds of definitions:
*** Single-paragraph definitions
$ Term
The definition of the object in a single paragraph.
This is not considered part of the definition.
*** Multi-paragraph definitions
$$ Term
Here, I can place any number of paragraphs or other format objects.
Even a code example:
@code lua
print("Hello world!")
@end
$$
This is no longer part of the definition because the `$$` on the previous line marked its end.
** Footnotes
There are also two kinds of footnotes:
*** Single-paragraph footnotes
^ This is the title of my footnote. I can use this as a link target.
This is the actual footnote content.
This is no longer part of the footnote.
*** Multi-paragraph footnotes
^^ This is a multi-paragraph footnote.
Here go the actual contents...
... which I can even continue down here.
^^
Now, the footnote has ended.
** Data Tags
Neorg supports a number of tags. The general format is:
@data possible parameters
contents
@end
*** Carryover Tags
Carryover tags are a variant of tags that apply some data to the next object.
The general syntax looks like this:
#tagname parameter1 parameter2
The object to apply the tag to.
Apart from just `#` you may also use the `+` character. It's best to use `#`
most of the time, as it applies recursively to the element you're tagging.
Use `+` only if you don't want your tag to apply recursively to the children
of an object.
**** Name
#name awesome quotes
> This is a quote.
> We can talk about anything we like
This quote now has a /name/! You can link to it with the magic char: {# awesome quotes}!
*** Code Blocks
@code
console.log("But I want syntax highlighting...")
@end
@code javascript
console.log("Thank you!")
@end
*** Media
*NOTE: Media is currently supported only via {https://github.com/3rd/image.nvim}[image.nvim].*
You can embed images directly in base64 format like so:
@image png svg jpeg jfif exif
<base64-encoded image data>
@end
Obviously you need to pick one of the available formats.
You can embed external image or video files like so:
.image https://raw.githubusercontent.com/nvim-neorg/neorg/main/res/neorg.svg
*** Math
There are two ways of typesetting mathematics:
~ Inline mathematics using the `$` attached modifier like so: $f(x) = y$.
To access LaTeX-typeset math within inline mathematics, use the [pipe] modifier:
$|\theta = \frac{\pi}{3}|$
~ Multi-line mathematics using the `math` ranged tag which supports any LaTeX-typeset math.
@math
f(x) = y
@end
** Advanced markup
There are some more advanced markup features:
*** The Link modifier
If you want to mark-up text which is not surrounded by punctuation or whitespace, you need to
use the *link* modifier, `:`, like so:
W:*h*:y w:/oul/:d a:_nyon_:e w:-an-:t to do t:`hi`:s?
*** Nested markup
You can nest multiple markup groups to combine their effect. Some examples:
- *Text can be bold _and underlined_!*
- You can create ,/italic subscripts/,.
- If you want to shout on the internet, use */_DOUBLY EMPHASIZED AND UNDERLINED CAPS_/*
Note: You can:*not* combine sub- and superscripts like so:
^,This should be super- and subscript.,^ - gets highlighted as an error.
*** Variables
*NOTE: Variables are not yet implemented in Neorg*
You can define variables which you can access later in your document like so:
@code norg
=variable-name
value
=end
@end
You can refer to this variable later in your document using the `&` attached modifier like so:
@code norg
Insert my &variable&.
@end
#comment
vim:tw=100:ft=norg:norl:conceallevel=0:concealcursor=:
================================================
FILE: doc/tags
================================================
neorg neorg.norg /* The `.norg` File Format
neorg-advanced-markup neorg.norg /** Advanced Markup
neorg-anchors neorg.norg /*** Anchors
neorg-basic-markup neorg.norg /** Basic Markup
neorg-breaking-changes breaking-changes.norg /*NOTE:
neorg-carryover-tags neorg.norg /*** Carryover
neorg-code-blocks neorg.norg /*** Code Blocks
neorg-data-tags neorg.norg /** Data Tags
neorg-definitions neorg.norg /** Definitions
neorg-footnotes neorg.norg /** Footnotes
neorg-headings neorg.norg /*** Headings
neorg-indentation-reversal neorg.norg /***** Indentation reversion
neorg-link-descriptions neorg.norg /*** Custom link text
neorg-link-examples neorg.norg /*** Examples
neorg-link-locations neorg.norg /*** Pure link location
neorg-link-modifier neorg.norg /*** The Link modifier
neorg-link-targets neorg.norg /*** Link Targets
neorg-links neorg.norg /** Links
neorg-math neorg.norg /*** Math
neorg-media neorg.norg /*** Media
neorg-name-tag neorg.norg /*** Name
neorg-nested-markup neorg.norg /*** Nested markup
neorg-ordered-lists neorg.norg /*** Ordered lists
neorg-quotes neorg.norg /*** Quotes
neorg-tasks neorg.norg /*** Tasks
neorg-unordered-lists neorg.norg /*** Unordered lists
neorg-variables neorg.norg /*** Variables
neorg-cheatsheet cheatsheet.norg /* Your Quick Neorg Guide
neorg-cheatsheet-headings cheatsheet.norg /** Headings
neorg-cheatsheet-reverse-headings cheatsheet.norg /** Reverse Headings
neorg-cheatsheet-lists cheatsheet.norg /** Lists
neorg-cheatsheet-code-blocks cheatsheet.norg /** Code Blocks
neorg-cheatsheet-styling cheatsheet.norg /** Styling
neorg-cheatsheet-links-urls cheatsheet.norg /*** Links to URLs
neorg-cheatsheet-links-objects cheatsheet.norg /*** Links to Objects
neorg-cheatsheet-links-non-norg cheatsheet.norg /*** Links to non-norg Files
neorg-cheatsheet-links-descriptions cheatsheet.norg /*** Links with Descriptions
neorg-cheatsheet-links-anything cheatsheet.norg /*** Links to Anything
neorg-cheatsheet-links-files cheatsheet.norg /*** Links across Files
neorg-cheatsheet-anchors cheatsheet.norg /** Anchors
neorg-cheatsheet-tasks cheatsheet.norg /* Tasks
================================================
FILE: docgen/docgen.lua
================================================
local neorg = require("neorg.core")
local docgen = {}
-- Create the directory if it does not exist
docgen.output_dir = "../wiki"
docgen.static_dir = "../res/wiki/static"
pcall(vim.fn.mkdir, docgen.output_dir)
-- Copy static wiki resources into the wiki
vim.loop.fs_scandir(docgen.static_dir, function(err, handle)
assert(handle, err) -- will not kill docgen on fail, because it is within async callback
local name, type = vim.loop.fs_scandir_next(handle)
while name do
if type == "file" then
assert(vim.loop.fs_copyfile(docgen.static_dir .. "/" .. name, docgen.output_di
gitextract_dcaeq6cv/ ├── .busted ├── .envrc ├── .github/ │ ├── CODEOWNERS │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.yml │ │ ├── config.yml │ │ └── feature_request.yml │ └── workflows/ │ ├── checks.yml │ ├── gendoc.yml │ ├── integration_tests.yml │ ├── luarocks.yml │ ├── semver.yml │ ├── sponsors.yml │ ├── stylua.yml │ ├── tests.yml │ └── version_in_code.yml ├── .gitignore ├── .luacheckrc ├── .styluaignore ├── CHANGELOG.md ├── LICENSE ├── Makefile ├── README.md ├── ROADMAP.md ├── doc/ │ ├── cheatsheet.norg │ ├── neorg.norg │ └── tags ├── docgen/ │ ├── docgen.lua │ ├── fileio.lua │ ├── init.lua │ └── minimal_init.vim ├── docs/ │ ├── CONTRIBUTING.md │ └── README.md ├── flake.nix ├── lua/ │ └── neorg/ │ ├── core/ │ │ ├── callbacks.lua │ │ ├── config.lua │ │ ├── init.lua │ │ ├── log.lua │ │ ├── modules.lua │ │ └── utils.lua │ ├── external/ │ │ └── log.lua │ ├── health.lua │ ├── init.lua │ ├── modules/ │ │ └── core/ │ │ ├── autocommands/ │ │ │ └── module.lua │ │ ├── clipboard/ │ │ │ ├── code-blocks/ │ │ │ │ └── module.lua │ │ │ └── module.lua │ │ ├── completion/ │ │ │ └── module.lua │ │ ├── concealer/ │ │ │ ├── module.lua │ │ │ ├── preset_basic/ │ │ │ │ └── module.lua │ │ │ ├── preset_diamond/ │ │ │ │ └── module.lua │ │ │ └── preset_varied/ │ │ │ └── module.lua │ │ ├── defaults/ │ │ │ └── module.lua │ │ ├── dirman/ │ │ │ ├── module.lua │ │ │ ├── tests.lua │ │ │ └── utils/ │ │ │ └── module.lua │ │ ├── esupports/ │ │ │ ├── hop/ │ │ │ │ └── module.lua │ │ │ ├── indent/ │ │ │ │ └── module.lua │ │ │ └── metagen/ │ │ │ └── module.lua │ │ ├── export/ │ │ │ ├── html/ │ │ │ │ └── module.lua │ │ │ ├── markdown/ │ │ │ │ └── module.lua │ │ │ └── module.lua │ │ ├── fs/ │ │ │ └── module.lua │ │ ├── highlights/ │ │ │ └── module.lua │ │ ├── integrations/ │ │ │ ├── coq_nvim/ │ │ │ │ └── module.lua │ │ │ ├── image/ │ │ │ │ └── module.lua │ │ │ ├── nvim-cmp/ │ │ │ │ └── module.lua │ │ │ ├── nvim-compe/ │ │ │ │ └── module.lua │ │ │ ├── otter/ │ │ │ │ └── module.lua │ │ │ ├── treesitter/ │ │ │ │ └── module.lua │ │ │ ├── truezen/ │ │ │ │ └── module.lua │ │ │ └── zen_mode/ │ │ │ └── module.lua │ │ ├── itero/ │ │ │ └── module.lua │ │ ├── journal/ │ │ │ └── module.lua │ │ ├── keybinds/ │ │ │ └── module.lua │ │ ├── latex/ │ │ │ └── renderer/ │ │ │ └── module.lua │ │ ├── links/ │ │ │ └── module.lua │ │ ├── looking-glass/ │ │ │ └── module.lua │ │ ├── neorgcmd/ │ │ │ ├── commands/ │ │ │ │ └── return/ │ │ │ │ └── module.lua │ │ │ └── module.lua │ │ ├── pivot/ │ │ │ └── module.lua │ │ ├── presenter/ │ │ │ └── module.lua │ │ ├── promo/ │ │ │ └── module.lua │ │ ├── qol/ │ │ │ ├── toc/ │ │ │ │ └── module.lua │ │ │ └── todo_items/ │ │ │ └── module.lua │ │ ├── queries/ │ │ │ └── native/ │ │ │ └── module.lua │ │ ├── scanner/ │ │ │ └── module.lua │ │ ├── storage/ │ │ │ └── module.lua │ │ ├── summary/ │ │ │ └── module.lua │ │ ├── syntax/ │ │ │ └── module.lua │ │ ├── tangle/ │ │ │ └── module.lua │ │ ├── tempus/ │ │ │ └── module.lua │ │ ├── text-objects/ │ │ │ └── module.lua │ │ ├── todo-introspector/ │ │ │ └── module.lua │ │ ├── ui/ │ │ │ ├── calendar/ │ │ │ │ ├── module.lua │ │ │ │ └── views/ │ │ │ │ └── monthly/ │ │ │ │ └── module.lua │ │ │ ├── module.lua │ │ │ ├── selection_popup/ │ │ │ │ └── module.lua │ │ │ └── text_popup/ │ │ │ └── module.lua │ │ └── upgrade/ │ │ └── module.lua │ └── tests/ │ └── init.lua ├── neorg-scm-1.rockspec ├── nix/ │ ├── checks/ │ │ └── default.nix │ ├── overlays/ │ │ ├── default.nix │ │ ├── installed-dependencies.nix │ │ ├── lib.nix │ │ └── luarc.nix │ ├── packages/ │ │ ├── default.nix │ │ └── integration-test.nix │ └── shells/ │ └── default.nix ├── queries/ │ ├── norg/ │ │ ├── folds.scm │ │ ├── highlights.scm │ │ └── injections.scm │ └── norg_meta/ │ ├── highlights.scm │ └── indents.scm ├── res/ │ ├── deps.json │ └── wiki/ │ └── static/ │ ├── Cookbook.md │ ├── Dependencies.md │ ├── Kickstart.md │ ├── Philosophy.md │ ├── Setup-Guide.md │ └── Tutorial.md └── stylua.toml
Condensed preview — 122 files, each showing path, character count, and a content snippet. Download the .json file or copy for the full structured content (1,148K chars).
[
{
"path": ".busted",
"chars": 275,
"preview": "return {\n _all = {\n coverage = false,\n lpath = \"lua/?.lua;lua/?/init.lua\",\n pattern = \"tests%.lu"
},
{
"path": ".envrc",
"chars": 16,
"preview": "use flake . -Lv\n"
},
{
"path": ".github/CODEOWNERS",
"chars": 34,
"preview": "# global rule\n* @vhyrro @benlubas\n"
},
{
"path": ".github/FUNDING.yml",
"chars": 725,
"preview": "# These are supported funding model platforms\n\nopen_collective: 'neorg' # Replace with a single Open Collective "
},
{
"path": ".github/ISSUE_TEMPLATE/bug_report.yml",
"chars": 2082,
"preview": "name: Bug Report\ndescription: Report a problem in Neorg\nlabels: [bug]\nbody:\n\n - type: checkboxes\n id: faq-prerequisi"
},
{
"path": ".github/ISSUE_TEMPLATE/config.yml",
"chars": 158,
"preview": "contact_links:\n - name: Ask a question\n url: https://github.com/vhyrro/neorg/discussions\n about: If you need help"
},
{
"path": ".github/ISSUE_TEMPLATE/feature_request.yml",
"chars": 1043,
"preview": "name: Feature request\ndescription: Request a feature for Neorg\nlabels: [feature]\nbody:\n\n - type: checkboxes\n id: iss"
},
{
"path": ".github/workflows/checks.yml",
"chars": 393,
"preview": "name: \"Codebase Checks\"\n\n# This workflow runs various checks (type checking, code checks)\n# to ensure that Neorg is not "
},
{
"path": ".github/workflows/gendoc.yml",
"chars": 2225,
"preview": "name: Automatically Generate Documentation\n\non:\n push:\n branches:\n - main\n\njobs:\n generate-documentation:\n "
},
{
"path": ".github/workflows/integration_tests.yml",
"chars": 621,
"preview": "name: \"Nix-based Integration Test\"\n\n# This workflow attempts to install Neorg with a kickstart config on all major OSes."
},
{
"path": ".github/workflows/luarocks.yml",
"chars": 825,
"preview": "name: Push to Luarocks\n\non:\n push:\n branches:\n - main\n\njobs:\n luarocks-upload:\n runs-on: ubuntu-24.04\n s"
},
{
"path": ".github/workflows/semver.yml",
"chars": 276,
"preview": "name: Release Please Automatic Semver\n\non:\n push:\n branches:\n - main\n\njobs:\n release:\n name: release\n ru"
},
{
"path": ".github/workflows/sponsors.yml",
"chars": 729,
"preview": "name: Generate Sponsors README\non:\n workflow_dispatch:\n schedule:\n - cron: 30 15 * * 0-6\njobs:\n deploy:\n runs-o"
},
{
"path": ".github/workflows/stylua.yml",
"chars": 1225,
"preview": "name: Formatting\n\non:\n push:\n branches: [ \"main\" ]\n paths-ignore:\n - \".github/**\"\n - \"**.md\"\n - \"*"
},
{
"path": ".github/workflows/tests.yml",
"chars": 300,
"preview": "name: Run tests\non:\n pull_request: ~\n push:\n branches:\n - main\n\njobs:\n build:\n name: Run tests\n runs-on"
},
{
"path": ".github/workflows/version_in_code.yml",
"chars": 1159,
"preview": "name: Update Version String in Neorg Code\n\non:\n workflow_run:\n workflows: [\"Release Please Automatic Semver\"]\n br"
},
{
"path": ".gitignore",
"chars": 120,
"preview": "/wiki/\n/luarocks\n/lua_modules\n/.luarocks\n/.luarc.json\ntest.norg\n\n# direnv\n.direnv\n\n# pre-commit\n.pre-commit-config.yaml\n"
},
{
"path": ".luacheckrc",
"chars": 295,
"preview": "-- Global objects\nglobals = {\n \"_\",\n \"vim\",\n \"neorg\",\n \"log\",\n \"_neorgcmd_generate_completions\",\n \"_neorg_indent_e"
},
{
"path": ".styluaignore",
"chars": 6,
"preview": "ldoc/\n"
},
{
"path": "CHANGELOG.md",
"chars": 110995,
"preview": "# Changelog\n\n## [9.4.0](https://github.com/nvim-neorg/neorg/compare/v9.3.0...v9.4.0) (2025-12-03)\n\n\n### Features\n\n* expo"
},
{
"path": "LICENSE",
"chars": 35149,
"preview": " GNU GENERAL PUBLIC LICENSE\n Version 3, 29 June 2007\n\n Copyright (C) 2007 Free "
},
{
"path": "Makefile",
"chars": 512,
"preview": "documentation:\n\tnvim --headless -u docgen/minimal_init.vim -c \"cd ./docgen\" -c \"source init.lua\" -c 'qa'\n\nlocal-document"
},
{
"path": "README.md",
"chars": 8003,
"preview": "<div align=\"center\">\n\n<img src=\"res/neorg.svg\" width=300>\n\n# Neorg - An Organized Future\n\n<a href=\"https://neovim.io\"> !"
},
{
"path": "ROADMAP.md",
"chars": 10494,
"preview": "<div align=\"center\">\n\n# Neorg Roadmap\n\n</div>\n\nGiven the rapid growth and adoption of Neorg it's critical that a develop"
},
{
"path": "doc/cheatsheet.norg",
"chars": 5382,
"preview": "* Your Quick Neorg Guide\n This is a cheatsheet that quickly lets you get a grip on the Norg syntax.\n It is by no means"
},
{
"path": "doc/neorg.norg",
"chars": 10680,
"preview": "@document.meta\ntitle: Neorg help-page\ndescription: The Neorg vim help-page\nauthor: The Neorg Community\ncategories: docs\n"
},
{
"path": "doc/tags",
"chars": 2103,
"preview": "neorg\tneorg.norg\t/* The `.norg` File Format\nneorg-advanced-markup\tneorg.norg\t/** Advanced Markup\nneorg-anchors\tneorg.nor"
},
{
"path": "docgen/docgen.lua",
"chars": 32611,
"preview": "local neorg = require(\"neorg.core\")\n\nlocal docgen = {}\n\n-- Create the directory if it does not exist\ndocgen.output_dir ="
},
{
"path": "docgen/fileio.lua",
"chars": 177,
"preview": "---@author vhyrro\n---@license GPLv3\n\nlocal io = {}\n\nio.write_to_wiki = function(filename, content)\n vim.fn.writefile("
},
{
"path": "docgen/init.lua",
"chars": 6317,
"preview": "local docgen = require(\"docgen\")\nlocal fileio = require(\"fileio\")\n\nlocal neorg = require(\"neorg.core\")\nlocal lib, module"
},
{
"path": "docgen/minimal_init.vim",
"chars": 847,
"preview": "\" Copied from: https://github.com/ThePrimeagen/refactoring.nvim/blob/master/scripts/minimal.vim\n\n\" Current neorg code\nse"
},
{
"path": "docs/CONTRIBUTING.md",
"chars": 4289,
"preview": "# Contributions welcome!\r\nWhilst any help is very special, please be considerate of certain rules in order to make the c"
},
{
"path": "docs/README.md",
"chars": 1171,
"preview": "<div align=\"center\">\r\n\r\n# Neorg Documentation\r\nThe place where you'll find all the goodies regarding Neorg docs.\r\n\r\n</di"
},
{
"path": "flake.nix",
"chars": 1157,
"preview": "# General TODOS:\n# - Add comments explaining the more terse parts of the flake.\n{\n description = \"Flake for Neorg devel"
},
{
"path": "lua/neorg/core/callbacks.lua",
"chars": 1905,
"preview": "--- @brief [[\n--- Defines user callbacks - ways for the user to directly interact with Neorg and respond on certain even"
},
{
"path": "lua/neorg/core/config.lua",
"chars": 3756,
"preview": "--- @brief [[\n--- Defines the configuration table for use throughout Neorg.\n--- @brief ]]\n\n-- TODO(vhyrro): Make `norg_v"
},
{
"path": "lua/neorg/core/init.lua",
"chars": 279,
"preview": "local neorg = {\n callbacks = require(\"neorg.core.callbacks\"),\n config = require(\"neorg.core.config\"),\n log = re"
},
{
"path": "lua/neorg/core/log.lua",
"chars": 5442,
"preview": "-- log.lua\n--\n-- Inspired by rxi/log.lua\n-- Modified by tjdevries and can be found at github.com/tjdevries/vlog.nvim\n-- "
},
{
"path": "lua/neorg/core/modules.lua",
"chars": 36372,
"preview": "--- @brief [[\n--- Base file for modules.\n--- This file contains the base implementation for \"modules\", building blocks o"
},
{
"path": "lua/neorg/core/utils.lua",
"chars": 8376,
"preview": "local configuration = require(\"neorg.core.config\")\nlocal log = require(\"neorg.core.log\")\n\n---@class neorg.core.utils\nloc"
},
{
"path": "lua/neorg/external/log.lua",
"chars": 0,
"preview": ""
},
{
"path": "lua/neorg/health.lua",
"chars": 5877,
"preview": "return {\n check = function()\n local config = require(\"neorg.core\").config.user_config\n local modules = "
},
{
"path": "lua/neorg/init.lua",
"chars": 5223,
"preview": "--- @brief [[\n--- This file marks the beginning of the entire plugin. It's here that everything fires up and starts pump"
},
{
"path": "lua/neorg/modules/core/autocommands/module.lua",
"chars": 15104,
"preview": "--[[\n file: Autocommands\n summary: Handles the creation and management of Neovim's autocommands.\n description: "
},
{
"path": "lua/neorg/modules/core/clipboard/code-blocks/module.lua",
"chars": 1950,
"preview": "--[[\n file: Clipboard-Code-Blocks\n title: Comfortable Code Copying in Neorg\n summary: Removes beginning whitesp"
},
{
"path": "lua/neorg/modules/core/clipboard/module.lua",
"chars": 3374,
"preview": "--[[\n file: Clipboard\n title: Quality of Life Features for the Clipboard\n summary: A module to manipulate and i"
},
{
"path": "lua/neorg/modules/core/completion/module.lua",
"chars": 33228,
"preview": "--[[\n file: Completion\n title: Get completions in Neorg files\n summary: A wrapper to interface with several dif"
},
{
"path": "lua/neorg/modules/core/concealer/module.lua",
"chars": 49673,
"preview": "--[[\n file: Concealer\n title: Display Markup as Icons, not Text\n description: The concealer module converts ver"
},
{
"path": "lua/neorg/modules/core/concealer/preset_basic/module.lua",
"chars": 189,
"preview": "local neorg = require(\"neorg.core\")\nlocal modules = neorg.modules\n\nlocal module = modules.create(\"core.concealer.preset_"
},
{
"path": "lua/neorg/modules/core/concealer/preset_diamond/module.lua",
"chars": 468,
"preview": "local neorg = require(\"neorg.core\")\nlocal modules = neorg.modules\n\nlocal module = modules.create(\"core.concealer.preset_"
},
{
"path": "lua/neorg/modules/core/concealer/preset_varied/module.lua",
"chars": 466,
"preview": "local neorg = require(\"neorg.core\")\nlocal modules = neorg.modules\n\nlocal module = modules.create(\"core.concealer.preset_"
},
{
"path": "lua/neorg/modules/core/defaults/module.lua",
"chars": 1146,
"preview": "--[[\n file: Defaults\n summary: Metamodule for storing the most necessary modules.\n internal: true\n ---\nThis "
},
{
"path": "lua/neorg/modules/core/dirman/module.lua",
"chars": 22165,
"preview": "--[[\n file: Dirman\n title: The Most Critical Component of any Organized Workflow\n description: The `dirman` mod"
},
{
"path": "lua/neorg/modules/core/dirman/tests.lua",
"chars": 1252,
"preview": "local tests = require(\"neorg.tests\")\nlocal Path = require(\"pathlib\")\n\ndescribe(\"core.dirman tests\", function()\n local"
},
{
"path": "lua/neorg/modules/core/dirman/utils/module.lua",
"chars": 5005,
"preview": "--[[\n file: Dirman-Utils\n summary: A set of utilities for the `core.dirman` module.\n internal: true\n ---\nThi"
},
{
"path": "lua/neorg/modules/core/esupports/hop/module.lua",
"chars": 38948,
"preview": "--[[\n file: Esupports-Hop\n title: Follow Various Link Locations\n description: `esupport.hop` handles the proces"
},
{
"path": "lua/neorg/modules/core/esupports/indent/module.lua",
"chars": 13523,
"preview": "--[[\n file: Indent\n title: Formatting on the Fly\n summary: A set of instructions for Neovim to indent Neorg doc"
},
{
"path": "lua/neorg/modules/core/esupports/metagen/module.lua",
"chars": 17048,
"preview": "--[[\n file: Metagen\n title: Manually Writing Metadata? No Thanks\n description: The metagen module automatically"
},
{
"path": "lua/neorg/modules/core/export/html/module.lua",
"chars": 22674,
"preview": "--[[\n file: HTML-Export\n title: Neorg's HTML Exporter\n summary: Interface for `core.export` to allow exporting "
},
{
"path": "lua/neorg/modules/core/export/markdown/module.lua",
"chars": 24577,
"preview": "--[[\n file: Markdown-Export\n title: Neorg's Markdown Exporter\n summary: Interface for `core.export` to allow ex"
},
{
"path": "lua/neorg/modules/core/export/module.lua",
"chars": 17300,
"preview": "--[[\n file: Exporting-Files\n title: Convert Neorg Files to other Filetypes with `core.export`\n summary: Exports"
},
{
"path": "lua/neorg/modules/core/fs/module.lua",
"chars": 2314,
"preview": "--[[\n file: Filesystem\n title: Module for Filesystem Operations\n summary: A cross-platform set of utilities to "
},
{
"path": "lua/neorg/modules/core/highlights/module.lua",
"chars": 22572,
"preview": "--[[\n file: Core-Highlights\n title: No Colour Means no Productivity\n summary: Manages your highlight groups wit"
},
{
"path": "lua/neorg/modules/core/integrations/coq_nvim/module.lua",
"chars": 4605,
"preview": "--[[\n file: Coq_nvim\n title: Integrating Neorg with `coq_nvim`\n summary: A module for integrating coq_nvim with"
},
{
"path": "lua/neorg/modules/core/integrations/image/module.lua",
"chars": 3307,
"preview": "--[[\n file: Image\n title: Images Directly within Neovim.\n description: The `image` module uses various terminal"
},
{
"path": "lua/neorg/modules/core/integrations/nvim-cmp/module.lua",
"chars": 4292,
"preview": "--[[\n file: Nvim-Cmp\n title: Integrating Neorg with `nvim-cmp`\n summary: A module for integrating nvim-cmp with"
},
{
"path": "lua/neorg/modules/core/integrations/nvim-compe/module.lua",
"chars": 7796,
"preview": "--[[\n file: Nvim-Compe\n title: Integrating Neorg with `nvim-compe`\n summary: A module for integrating nvim-comp"
},
{
"path": "lua/neorg/modules/core/integrations/otter/module.lua",
"chars": 3935,
"preview": "--[[\n file: Otter\n title: LSP Features in Code Cells\n description: Integrates with otter.nvim to get LSP featur"
},
{
"path": "lua/neorg/modules/core/integrations/treesitter/module.lua",
"chars": 37915,
"preview": "--[[\n file: Treesitter-Integration\n title: Snazzy Treesitter Integration\n summary: A module designed to integra"
},
{
"path": "lua/neorg/modules/core/integrations/truezen/module.lua",
"chars": 896,
"preview": "--[[\n file: Truezen-Integration\n title: A TrueZen integration for Neorg\n summary: Integrates the TrueZen module"
},
{
"path": "lua/neorg/modules/core/integrations/zen_mode/module.lua",
"chars": 783,
"preview": "--[[\n file: ZenMode-Integration\n title: An integration for `zen-mode`\n summary: Integrates and exposes the func"
},
{
"path": "lua/neorg/modules/core/itero/module.lua",
"chars": 4695,
"preview": "--[[\n file: Itero\n title: Fast List/Heading Continuation\n description: Fluidness is key, after all.\n summary"
},
{
"path": "lua/neorg/modules/core/journal/module.lua",
"chars": 21831,
"preview": "--[[\n file: Journal\n title: Dear diary...\n description: The journal module allows you to take personal notes wi"
},
{
"path": "lua/neorg/modules/core/keybinds/module.lua",
"chars": 15898,
"preview": "--[[\n file: User-Keybinds\n title: The Language of Neorg\n description: `core.keybinds` manages mappings for oper"
},
{
"path": "lua/neorg/modules/core/latex/renderer/module.lua",
"chars": 19993,
"preview": "--[[\n file: Core-Latex-Renderer\n title: Rendering LaTeX with image.nvim\n summary: An experimental module for re"
},
{
"path": "lua/neorg/modules/core/links/module.lua",
"chars": 3351,
"preview": "--[[\n file: Links\n title: Find links/target in the buffer\n description: Utility module to handle links/link tar"
},
{
"path": "lua/neorg/modules/core/looking-glass/module.lua",
"chars": 11634,
"preview": "--[[\n file: Looking-Glass\n title: Code Blocks + Superpowers\n description: The `core.looking-glass` module magni"
},
{
"path": "lua/neorg/modules/core/neorgcmd/commands/return/module.lua",
"chars": 1603,
"preview": "--[[\n file: Neorgcmd-return\n title: Provides the `:Neorg return` Command\n summary: Return to last location befo"
},
{
"path": "lua/neorg/modules/core/neorgcmd/module.lua",
"chars": 17785,
"preview": "--[[\n file: Neorgcmd-Module\n title: Does the Heavy Lifting for the `:Neorg` Command\n summary: This module deals"
},
{
"path": "lua/neorg/modules/core/pivot/module.lua",
"chars": 4630,
"preview": "--[[\n file: Pivot\n title: Ordered or Unordered?\n description: That ~~is~~ was the question. Now you no longer h"
},
{
"path": "lua/neorg/modules/core/presenter/module.lua",
"chars": 8796,
"preview": "--[[\n file: Core-Presenter\n title: Powerpoint in Neorg\n description: The presenter module creates slideshows ou"
},
{
"path": "lua/neorg/modules/core/promo/module.lua",
"chars": 11945,
"preview": "--[[\n file: Promo\n title: You have Received a Promotion!\n description: The `promo` module increases or decrease"
},
{
"path": "lua/neorg/modules/core/qol/toc/module.lua",
"chars": 22099,
"preview": "--[[\n file: TOC\n title: A Bird's Eye View of Norg Documents\n description: The TOC module generates a table of c"
},
{
"path": "lua/neorg/modules/core/qol/todo_items/module.lua",
"chars": 18366,
"preview": "--[[\n file: Todo-Items\n title: Todo Item Swiss Army Knife\n summary: Module for implementing todo lists.\n ---"
},
{
"path": "lua/neorg/modules/core/queries/native/module.lua",
"chars": 14857,
"preview": "--[[\n file: Queries-Module\n title: Queries Made Easy\n summary: TS wrapper in order to fetch nodes using a custo"
},
{
"path": "lua/neorg/modules/core/scanner/module.lua",
"chars": 2396,
"preview": "--[[\n file: Scanner-Module\n title: Scanner module for Neorg\n summary: This module is an implementation of a sca"
},
{
"path": "lua/neorg/modules/core/storage/module.lua",
"chars": 2592,
"preview": "--[[\n File: Storage\n Title: Store persistent data and query it easily with `core.storage`\n Summary: Deals with "
},
{
"path": "lua/neorg/modules/core/summary/module.lua",
"chars": 15998,
"preview": "--[[\n file: Summary\n title: Write notes, not boilerplate.\n description: The summary module creates links and an"
},
{
"path": "lua/neorg/modules/core/syntax/module.lua",
"chars": 29999,
"preview": "--[[\n file: Syntax\n title: Where Treesitter can't Reach\n description: When a language not supported by Treesitt"
},
{
"path": "lua/neorg/modules/core/tangle/module.lua",
"chars": 22193,
"preview": "--[[\n file: Tangling\n title: From Code Blocks to Files\n description: The `core.tangle` module exports code bloc"
},
{
"path": "lua/neorg/modules/core/tempus/module.lua",
"chars": 12876,
"preview": "--[[\n file: Tempus\n title: Hassle-Free Dates\n summary: Parses and handles dates in Neorg.\n internal: true\n "
},
{
"path": "lua/neorg/modules/core/text-objects/module.lua",
"chars": 8230,
"preview": "--[[\n file: Norg-Text-Objects\n title: Navigation, Selection, and Swapping\n summary: A Neorg module for moving a"
},
{
"path": "lua/neorg/modules/core/todo-introspector/module.lua",
"chars": 7358,
"preview": "--[[\n file: Todo-Introspector\n title: See Your Progress at a Glance\n description: The introspector module displ"
},
{
"path": "lua/neorg/modules/core/ui/calendar/module.lua",
"chars": 5531,
"preview": "--[[\n file: Calendar\n title: Frictionless Dates\n description: The calendar module provides a range of functiona"
},
{
"path": "lua/neorg/modules/core/ui/calendar/views/monthly/module.lua",
"chars": 44714,
"preview": "local neorg = require(\"neorg.core\")\nlocal lib, log, modules, utils = neorg.lib, neorg.log, neorg.modules, neorg.utils\n\nl"
},
{
"path": "lua/neorg/modules/core/ui/module.lua",
"chars": 16911,
"preview": "--[[\n File: Core-UI\n Title: Module for managing and displaying UIs to the user.\n Summary: A set of public funct"
},
{
"path": "lua/neorg/modules/core/ui/selection_popup/module.lua",
"chars": 21348,
"preview": "--[[\n A UI module to allow the user to press different keys to select different actions\n--]]\n\nlocal neorg = require(\""
},
{
"path": "lua/neorg/modules/core/ui/text_popup/module.lua",
"chars": 3441,
"preview": "--[[\n File for creating text popups for the user.\n--]]\n\nlocal neorg = require(\"neorg.core\")\nlocal modules = neorg.mod"
},
{
"path": "lua/neorg/modules/core/upgrade/module.lua",
"chars": 1213,
"preview": "--[[\n file: Upgrade\n title: Upgrade Tool for Neorg\n summary: Converts old versions of the Norg syntax to newer "
},
{
"path": "lua/neorg/tests/init.lua",
"chars": 1495,
"preview": "--[[\nThis file contains a variety of utility functions for writing Neorg tests.\n\nThe functions used here should be gener"
},
{
"path": "neorg-scm-1.rockspec",
"chars": 1125,
"preview": "local MODREV, SPECREV = \"scm\", \"-1\"\nrockspec_format = \"3.0\"\npackage = \"neorg\"\nversion = MODREV .. SPECREV\n\ndescription ="
},
{
"path": "nix/checks/default.nix",
"chars": 591,
"preview": "{\n self,\n git-hooks,\n lib,\n ...\n}: {\n perSystem = {\n pkgs,\n system,\n ...\n }: {\n checks = {\n type-"
},
{
"path": "nix/overlays/default.nix",
"chars": 759,
"preview": "{\n self,\n inputs,\n gen-luarc,\n neorocks,\n ...\n}: {\n perSystem = {\n pkgs,\n system,\n ...\n }: {\n _module"
},
{
"path": "nix/overlays/installed-dependencies.nix",
"chars": 1030,
"preview": "{\n lib,\n runCommand,\n lua51Packages,\n wget,\n self,\n}: let\n # Temporarily remove the parsers due to installation pr"
},
{
"path": "nix/overlays/lib.nix",
"chars": 350,
"preview": "{pkgs}: rec {\n callPackageNoOverridableWith = originalAttrs: fun: additionalAttrs: let\n f =\n if pkgs.lib.isFunc"
},
{
"path": "nix/overlays/luarc.nix",
"chars": 270,
"preview": "{\n callPackage,\n installed-dependencies,\n lib,\n lua51Packages,\n mk-luarc,\n self,\n}: let\n luarc = mk-luarc {};\nin\n"
},
{
"path": "nix/packages/default.nix",
"chars": 91,
"preview": "{pkgs, ...}: {\n packages.integration-test = pkgs.callPackage ./integration-test.nix {};\n}\n"
},
{
"path": "nix/packages/integration-test.nix",
"chars": 2554,
"preview": "{\n writeScript,\n writeShellApplication,\n neovim-unwrapped,\n tree-sitter,\n lua5_1,\n wget,\n}: let\n kickstart-config"
},
{
"path": "nix/shells/default.nix",
"chars": 319,
"preview": "{pkgs, ...}: {\n devShells.default = pkgs.mkShell {\n name = \"neorg devShell\";\n\n shellHook = ''\n ln -fs ${pkgs"
},
{
"path": "queries/norg/folds.scm",
"chars": 403,
"preview": "(ranged_verbatim_tag) @fold\n\n[\n (heading1)\n (heading2)\n (heading3)\n (heading4)\n (heading5)\n (heading6)"
},
{
"path": "queries/norg/highlights.scm",
"chars": 11280,
"preview": "(ranged_verbatim_tag\n (\"_prefix\") @neorg.tags.ranged_verbatim.begin\n name: (tag_name\n [(word) @neorg.tags.ran"
},
{
"path": "queries/norg/injections.scm",
"chars": 664,
"preview": "; Injection for code blocks\n(ranged_verbatim_tag (tag_name) @_tagname (tag_parameters .(tag_param) @injection.language) "
},
{
"path": "queries/norg_meta/highlights.scm",
"chars": 1511,
"preview": "; Regular keys and values\n(key) @neorg.tags.ranged_verbatim.document_meta.key\n(string) @neorg.tags.ranged_verbatim.docum"
},
{
"path": "queries/norg_meta/indents.scm",
"chars": 103,
"preview": "(array) @indent.begin\n(object) @indent.begin\n(ERROR) @indent.begin\n\n[\n \"]\"\n \"}\"\n] @indent.branch\n"
},
{
"path": "res/deps.json",
"chars": 142,
"preview": "{\n \"nvim-nio\": \"1.9.3\",\n \"lua-utils.nvim\": \"1.0.2\",\n \"plenary.nvim\": \"0.1.4\",\n \"nui.nvim\": \"0.3.0\",\n \"pat"
},
{
"path": "res/wiki/static/Cookbook.md",
"chars": 1300,
"preview": "# Neorg Cookbook\n\nThis document details a bunch of snippets and prebuilt configurations for individual modules\nfor a jus"
},
{
"path": "res/wiki/static/Dependencies.md",
"chars": 16754,
"preview": "TODO: Rewrite parts of this to be more clear (remove the quotes).\n\n# Understanding Neorg dependencies\n\nNeorg depends on "
},
{
"path": "res/wiki/static/Kickstart.md",
"chars": 3823,
"preview": "<div align=\"center\">\n\n# Instantaneous Neorg Setup\n\nGet up and running with Neorg even with zero Neovim knowledge.\n\n</div"
},
{
"path": "res/wiki/static/Philosophy.md",
"chars": 581,
"preview": "<div align=\"center\">\n\n# :rocket: Project Philosophy\n\n</div>\n\nNeorg is a project that stands on the shoulders of giants, "
},
{
"path": "res/wiki/static/Setup-Guide.md",
"chars": 5651,
"preview": "<div align=\"center\">\n\n# Setting up Neorg\n\nA guide on configuring Neorg.\n\n</div>\n\n> [!NOTE]\n> If you're just getting star"
},
{
"path": "res/wiki/static/Tutorial.md",
"chars": 11447,
"preview": "<div align=\"center\">\n\n# Getting Started\n\nA guide on getting started with Neorg.\n\n</div>\n\n## Neorg as a Concept\n\nFirst of"
},
{
"path": "stylua.toml",
"chars": 142,
"preview": "column_width = 120\nline_endings = \"Unix\"\nindent_type = \"Spaces\"\nindent_width = 4\nquote_style = \"AutoPreferDouble\"\nno_cal"
}
]
About this extraction
This page contains the full source code of the nvim-neorg/neorg GitHub repository, extracted and formatted as plain text for AI agents and large language models (LLMs). The extraction includes 122 files (1.0 MB), approximately 259.9k tokens. Use this with OpenClaw, Claude, ChatGPT, Cursor, Windsurf, or any other AI tool that accepts text input. You can copy the full output to your clipboard or download it as a .txt file.
Extracted by GitExtract — free GitHub repo to text converter for AI. Built by Nikandr Surkov.