From b71b024efc4313d52617436c9157028c5efc8fef Mon Sep 17 00:00:00 2001 From: aminnairi <18418459+aminnairi@users.noreply.github.com> Date: Sat, 8 Nov 2025 21:02:45 +0100 Subject: [PATCH] removed neorg --- .../nvim/lua/settings/lazy/plugins/neorg.lua | 72 ------------------- 1 file changed, 72 deletions(-) delete mode 100644 sources/nvim/lua/settings/lazy/plugins/neorg.lua diff --git a/sources/nvim/lua/settings/lazy/plugins/neorg.lua b/sources/nvim/lua/settings/lazy/plugins/neorg.lua deleted file mode 100644 index 84108e4..0000000 --- a/sources/nvim/lua/settings/lazy/plugins/neorg.lua +++ /dev/null @@ -1,72 +0,0 @@ -return { - "nvim-neorg/neorg", - build = ":Neorg sync-parsers", - event = "VeryLazy", - dependencies = { - "nvim-lua/plenary.nvim", - "folke/which-key.nvim", - }, - -- init = function() - -- -- Configure the key to use for keybinds used in the "core.keybinds" module - -- vim.g.maplocalleader = "," - -- end, - config = function() - require("neorg").setup({ - load = { - -- Default module that imports the core modules necessary for Neorg - ["core.defaults"] = {}, - -- Module responsible for enhancing the icons display in Neorg files - ["core.concealer"] = { - -- Configuration for the "core.concealer" module - config = { - -- Configure icons for concealed items - icons = { - -- Configure the code blocks - code_block = { - -- Conceal the "@code" and "@end" completely when in normal modej - conceal = true, - -- Add padding to a code inside a code block - padding = { - -- Add 2 spaces before the code inside a code block - left = 2 - } - }, - -- Configure the headings - heading = { - -- List of icons to use for all headings levels from 1 to 6 - icons = { - "◉", - "◎", - "○", - "◉", - "◎", - "○", - }, - }, - }, - }, - }, - ["core.dirman"] = { - -- Configuration for "core.dirman" module - config = { - -- Workspaces are folders from where to find Neorg files - workspaces = { - -- My personal notes - notes = "~/git/github.com/aminnairi/notes", - }, - }, - }, - -- Module for controling the presentation mode for Neorg files - ["core.presenter"] = { - -- Configuration for the presenter module - config = { - -- Plugin to use, here "folke/zen-mode" - zen_mode = "zen-mode", - }, - }, - -- Module for controling the ability to export Neorg files - ["core.export"] = {} - }, - }) - end, -}