Nvim cmp completions not working #352
-
|
Hey, great project y'all have, unfortunately I'm facing some issues with completions. I've gone through a bunch of issues and discussions here as well as the wiki and I am still unable to get Here are my relevant configs: Here's my local neorg = require("neorg")
neorg.setup({
load = {
["core.defaults"] = {},
["core.norg.concealer"] = {},
["core.norg.esupports.metagen"] = {
config = {
type = "auto",
}
},
["core.norg.completion"] = {
config = {
engine = "nvim-cmp"
},
},
["core.keybinds"] = {
config = {
default_keybinds = true,
norg_leader = "<Leader>o"
}
},
["core.norg.dirman"] = {
config = {
workspaces = {
default = "~/.neorg"
}
}
},
["core.integrations.telescope"] = {},
}
})I'm at a bit of a loss as to why I'm not getting completions, as I seemingly have my When I have a I attempted to add I also had the option: ["core.integrations.nvim-cmp"] = {
config = {}
}set in there previously instead of If there's anything that stands out I'd much appreciate feedback on what I have incorrect, thanks. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
|
Nevermind, I've resolved this mess... ended up burning my ~/.local/share/nvim directory down and reinstalling packer from bootstrap and now it works flawlessly... very annoying. Apologies for filling up the discussions. |
Beta Was this translation helpful? Give feedback.
Nevermind, I've resolved this mess... ended up burning my ~/.local/share/nvim directory down and reinstalling packer from bootstrap and now it works flawlessly... very annoying. Apologies for filling up the discussions.