From 7c0c5f430f1542bd4df8ca9334e9bf020588b4d4 Mon Sep 17 00:00:00 2001 From: Raffaele Wylde <75472685+raffaelewylde@users.noreply.github.com> Date: Tue, 9 Jul 2024 02:34:09 -0400 Subject: [PATCH] added nvim-neorg plugin config --- lua/plugins/nvim-neorg.lua | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 lua/plugins/nvim-neorg.lua diff --git a/lua/plugins/nvim-neorg.lua b/lua/plugins/nvim-neorg.lua new file mode 100644 index 0000000..bca53e9 --- /dev/null +++ b/lua/plugins/nvim-neorg.lua @@ -0,0 +1,6 @@ +return { + "nvim-neorg/neorg", + lazy = false, -- Disable lazy loading as some `lazy.nvim` distributions set `lazy = true` by default + version = "8.9.0", -- Pin Neorg to the latest stable release + config = true, +}