mirror of
https://github.com/LazyVim/LazyVim.git
synced 2026-07-25 14:01:06 +00:00
fix(xtras): load copilot-native before blink
`blink` Extra loads earlier than `copilot-native` Extra and that causes `ghost_text.enabled = vim.g.ai_cmp` to wrongly evaluate to `true` even though `copilot-native` explicitly sets `vim.g.ai_cmp = false`.
This commit is contained in:
parent
b9d38f6920
commit
d03eea8bcb
1 changed files with 2 additions and 1 deletions
|
|
@ -5,8 +5,9 @@ local prios = {
|
||||||
["lazyvim.plugins.extras.coding.nvim-cmp"] = 2,
|
["lazyvim.plugins.extras.coding.nvim-cmp"] = 2,
|
||||||
["lazyvim.plugins.extras.editor.neo-tree"] = 2,
|
["lazyvim.plugins.extras.editor.neo-tree"] = 2,
|
||||||
["lazyvim.plugins.extras.ui.edgy"] = 3,
|
["lazyvim.plugins.extras.ui.edgy"] = 3,
|
||||||
["lazyvim.plugins.extras.lang.typescript"] = 5,
|
["lazyvim.plugins.extras.ai.copilot-native"] = 4,
|
||||||
["lazyvim.plugins.extras.coding.blink"] = 5,
|
["lazyvim.plugins.extras.coding.blink"] = 5,
|
||||||
|
["lazyvim.plugins.extras.lang.typescript"] = 5,
|
||||||
["lazyvim.plugins.extras.formatting.prettier"] = 10,
|
["lazyvim.plugins.extras.formatting.prettier"] = 10,
|
||||||
-- default core extra priority is 20
|
-- default core extra priority is 20
|
||||||
-- default priority is 50
|
-- default priority is 50
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue