summaryrefslogtreecommitdiff
path: root/public/nvim/.nvim
diff options
context:
space:
mode:
Diffstat (limited to 'public/nvim/.nvim')
-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,
- },
-}