Skip to content

Commit

Permalink
fix(neorg)!: fix breaking change in v8.0.0 (#813)
Browse files Browse the repository at this point in the history
* fix(neorg)!: fix breaking change in v8.0.0

* refactor(neorg): move luarocks.nvim spec to dependencies

* refactor(neorg): remove no longer necessary table

* feat(neorg): pin version

---------

Co-authored-by: Uzair Aftab <48220549+Uzaaft@users.noreply.github.com>
  • Loading branch information
ALVAROPING1 and Uzaaft committed Mar 30, 2024
1 parent f87424b commit 34a09c9
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
2 changes: 2 additions & 0 deletions lua/astrocommunity/note-taking/neorg/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,5 @@
Modernity meets insane extensibility. The future of organizing your life in Neovim.

**Repository:** <https://github.com/nvim-neorg/neorg>

**Requirements:** Lua 5.1/LuaJIT and Lua header files installed as system dependencies
11 changes: 8 additions & 3 deletions lua/astrocommunity/note-taking/neorg/init.lua
Original file line number Diff line number Diff line change
@@ -1,8 +1,13 @@
return {
"nvim-neorg/neorg",
version = "^7",
build = ":Neorg sync-parsers",
dependencies = { "nvim-lua/plenary.nvim" },
version = "^8",
dependencies = {
{
"vhyrro/luarocks.nvim",
priority = 1000, -- We'd like this plugin to load first out of the rest
config = true,
},
},
event = "VeryLazy",
opts = {
load = {
Expand Down

0 comments on commit 34a09c9

Please sign in to comment.