From 0ec83026aa621d81c3897389b4d5eccdfb621304 Mon Sep 17 00:00:00 2001 From: Price Hiller Date: Mon, 8 May 2023 00:15:54 -0500 Subject: [PATCH] refactor(nvim): remove neorg --- .../nvim/lua/plugins/configs/_neorg.lua | 48 ------------------- dots/.config/nvim/lua/plugins/plugins.lua | 12 ----- 2 files changed, 60 deletions(-) delete mode 100755 dots/.config/nvim/lua/plugins/configs/_neorg.lua diff --git a/dots/.config/nvim/lua/plugins/configs/_neorg.lua b/dots/.config/nvim/lua/plugins/configs/_neorg.lua deleted file mode 100755 index a0046b33..00000000 --- a/dots/.config/nvim/lua/plugins/configs/_neorg.lua +++ /dev/null @@ -1,48 +0,0 @@ -local neorg = require("neorg") - -neorg.setup({ - load = { - ["core.defaults"] = {}, - ["core.concealer"] = { - config = { - dim_code_blocks = { - enabled = true, - content_only = true, - adaptive = true, - }, - icon_preset = "diamond", - }, - }, - ["core.esupports.metagen"] = { - config = { - type = "auto", - }, - }, - ["core.integrations.nvim-cmp"] = { - config = {}, - }, - ["core.completion"] = { - config = { - engine = "nvim-cmp", - }, - }, - ["core.keybinds"] = { - config = { - default_keybinds = true, - -- norg_leader = "-" - }, - }, - ["core.dirman"] = { - config = { - workspaces = { - default = "~/.notes", -- Format: = - }, - autochdir = true, -- Automatically change the directory to the current workspace's root every time - index = "index.norg", -- The name of the main (root) .norg file - last_workspace = vim.fn.stdpath("cache") .. "/neorg_last_workspace.txt", -- The location to write and read the workspace cache file - }, - }, - ["core.integrations.telescope"] = {}, - ["core.qol.toc"] = {}, - }, -}) diff --git a/dots/.config/nvim/lua/plugins/plugins.lua b/dots/.config/nvim/lua/plugins/plugins.lua index 1fb10ed5..67b52afc 100755 --- a/dots/.config/nvim/lua/plugins/plugins.lua +++ b/dots/.config/nvim/lua/plugins/plugins.lua @@ -540,18 +540,6 @@ lazy.setup({ end, event = "VeryLazy", }, - { - "nvim-neorg/neorg", - build = ":Neorg sync-parsers", - config = function() - require("plugins.configs._neorg") - end, - dependencies = { - "nvim-lua/plenary.nvim", - "nvim-neorg/neorg-telescope", - }, - ft = "norg", - }, -- Log Syntax Highlighting {