AstroNvim / astrocommunity

A community repository of common plugin specifications
GNU General Public License v3.0
1.21k stars 240 forks source link

neorg completion doesn't work #478

Closed Fissium closed 1 year ago

Fissium commented 1 year ago

Expected behavior: https://github.com/nvim-neorg/neorg/pull/70

Actual behavior: image image

Neorg config (community.lua):

return {
  -- Add the community repository of plugin specifications
  "AstroNvim/astrocommunity",
  -- example of imporing a plugin, comment out to use it or add your own
  -- available plugins can be found at https://github.com/AstroNvim/astrocommunity

  { import = "astrocommunity.motion.leap-nvim" },
  { import = "astrocommunity.markdown-and-latex.markdown-preview-nvim" },
  { import = "astrocommunity.note-taking.neorg" },
  {
    "neorg",
    opts = {
      load = {
        ["core.concealer"] = {
          config = {
            icon_preset = "diamond",
          },
        }, -- Adds pretty icons to your documents
        ["core.dirman"] = { -- Manages Neorg workspaces
          config = {
            workspaces = {
              notes = "~/Documents/Notes",
            },
            default_workspace = "notes",
          },
        },
      },
    },
  },
}
Uzaaft commented 1 year ago

The astrocommunity pack doesnt setup the cmp stuff.

Uzaaft commented 1 year ago

You’ll have to set it up yourself. We’re open to PRs if you think it should added to astrocom :)