Skip to content

Commit

Permalink
feat(blink.cmp): migrate from "nvim-cmp" to "blink.cmp"
Browse files Browse the repository at this point in the history
  • Loading branch information
linrongbin16 committed Nov 25, 2024
1 parent ce52f9d commit ddf9826
Showing 1 changed file with 9 additions and 38 deletions.
47 changes: 9 additions & 38 deletions lua/plugins/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -259,26 +259,14 @@ local M = {
},

-- ---- AUTO-COMPLETE ----
{
"onsails/lspkind.nvim",
lazy = true,
},
-- {
-- "onsails/lspkind.nvim",
-- lazy = true,
-- },
{
"rafamadriz/friendly-snippets",
lazy = true,
},
{
"hrsh7th/cmp-nvim-lsp",
lazy = true,
},
{
"hrsh7th/cmp-buffer",
lazy = true,
},
{
"FelipeLema/cmp-async-path",
lazy = true,
},
{
"L3MON4D3/LuaSnip",
lazy = true,
Expand All @@ -287,28 +275,11 @@ local M = {
submodules = false,
},
{
"saadparwaiz1/cmp_luasnip",
lazy = true,
dependencies = { "L3MON4D3/LuaSnip" },
},
{
"hrsh7th/cmp-cmdline",
lazy = true,
},
{
"hrsh7th/nvim-cmp",
event = { InsertEnter, CmdlineEnter },
dependencies = {
"neovim/nvim-lspconfig",
"onsails/lspkind.nvim",
"hrsh7th/cmp-nvim-lsp",
"hrsh7th/cmp-buffer",
"FelipeLema/cmp-async-path",
"L3MON4D3/LuaSnip",
"saadparwaiz1/cmp_luasnip",
"hrsh7th/cmp-cmdline",
},
config = lua_config("hrsh7th/nvim-cmp"),
"saghen/blink.cmp",
lazy = false,
dependencies = "rafamadriz/friendly-snippets",
version = "v0.*",
config = lua_config("saghen/blink.cmp"),
},

-- ---- KEY BINDING ----
Expand Down

0 comments on commit ddf9826

Please sign in to comment.