summaryrefslogtreecommitdiff
path: root/public/nvim/.nvim/lua
diff options
context:
space:
mode:
authorChristian Segundo2023-11-05 12:31:47 +0100
committerChristian Segundo2023-11-05 12:31:47 +0100
commitb01ffbfe48b87c2e62dfbad4f3c939cedfeed479 (patch)
treef6735cfe6f6f3ae5b61c3ef6402a42448e8acbf7 /public/nvim/.nvim/lua
parentd426430c44e1d98a1af7c70d2e3d00f5ffa97cdb (diff)
downloaddotfiles-b01ffbfe48b87c2e62dfbad4f3c939cedfeed479.tar.gz
remove neorg
Diffstat (limited to 'public/nvim/.nvim/lua')
-rw-r--r--public/nvim/.nvim/lua/plugins/extra/neorg.lua36
1 files changed, 0 insertions, 36 deletions
diff --git a/public/nvim/.nvim/lua/plugins/extra/neorg.lua b/public/nvim/.nvim/lua/plugins/extra/neorg.lua
deleted file mode 100644
index 991ec40..0000000
--- a/public/nvim/.nvim/lua/plugins/extra/neorg.lua
+++ /dev/null
@@ -1,36 +0,0 @@
-return {
- {
- "nvim-neorg/neorg",
- build = ":Neorg sync-parsers",
- dependencies = { "nvim-lua/plenary.nvim" },
- config = function()
- require("neorg").setup({
- load = {
- ["core.defaults"] = {}, -- Loads default behaviour
- ["core.concealer"] = {}, -- Adds pretty icons to your documents
- ["core.completion"] = { config = { engine = "nvim-cmp" } },
- ["core.dirman"] = { -- Manages Neorg workspaces
- config = {
- workspaces = {
- notes = "~/notes",
- www = "~/www",
- },
- default_workspace = "notes",
- },
- },
- },
- })
- end,
- },
-
- {
- "hrsh7th/nvim-cmp",
- dependencies = { "nvim-neorg/neorg" },
- opts = function(_, opts)
- if type(opts) == "table" then
- table.insert(opts.sources, 1, { name = "neorg" })
- opts.formatting.format.menu["neorg"] = ""
- end
- end,
- },
-}