Replies: 2 comments 5 replies
-
Thanks for your report, and sorry for my delayed response (#562). Your first version looks correct - did you run |
Beta Was this translation helpful? Give feedback.
5 replies
-
I have meet the same issue here. I think the requires has no guarantee of load "required plugins" before the declaring one. -- language server protocol and auto completion
use({ "neovim/nvim-lspconfig", ft = { "c", "cpp", "rust", "python" } })
use({ "hrsh7th/cmp-nvim-lsp", after = "neovim/nvim-lspconfig" })
use({ "L3MON4D3/LuaSnip", after = "hrsh7th/cmp-nvim-lsp" })
use({ "saadparwaiz1/cmp_luasnip", after = "L3MON4D3/LuaSnip" })
use({
"hrsh7th/nvim-cmp",
config = require("configs.completion").setup,
after = "saadparwaiz1/cmp_luasnip",
}) |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
i'm alredy install nvim-cmp from hrsh7th and now i want loaad my nvim-cmp configuration
i have question about value from config in spec from readme.md say
config = string or function
if fill like this, my configuration not loaded
if I directly use it as below, the config can be loaded but before loading the config I want to check first whether the plugins are successfully loaded or not
configurtion
sorry if my english is bad
Beta Was this translation helpful? Give feedback.
All reactions