Skip to content

Commit

Permalink
fix(neovim): load blink-cmp-copilot before blink.cmp
Browse files Browse the repository at this point in the history
  • Loading branch information
natsukium committed Jan 8, 2025
1 parent 47095ee commit d699e6c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion pkgs/neovim-with-config/lua/plugins/completion.lua
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ return {
{
"blink.cmp",
event = { "InsertEnter", "CmdlineEnter" },
before = function()
require("lz.n").trigger_load("blink-cmp-copilot")
end,
after = function()
require("blink.cmp").setup({
completion = {
Expand Down Expand Up @@ -45,6 +48,5 @@ return {
},
{
"blink-cmp-copilot",
event = "InsertEnter",
},
}

0 comments on commit d699e6c

Please sign in to comment.