Skip to content

Commit

Permalink
feat(completion): add blink.cmp
Browse files Browse the repository at this point in the history
  • Loading branch information
mehalter committed Oct 8, 2024
1 parent c87c236 commit de8e2ea
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 0 deletions.
5 changes: 5 additions & 0 deletions lua/astrocommunity/completion/blink-cmp/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Blink Completion (blink.cmp)

Performant, batteries-included completion plugin for Neovim

**Repository:** <https://github.com/Saghen/blink.cmp>
17 changes: 17 additions & 0 deletions lua/astrocommunity/completion/blink-cmp/init.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
return {
"Saghen/blink.cmp",
event = "InsertEnter",
version = "v0.*",
dependencies = { "rafamadriz/friendly-snippets" },
opts = {
highlight = { use_nvim_cmp_as_default = true },
},
specs = {
-- disable built in completion plugins
{ "hrsh7th/nvim-cmp", enabled = false },
{ "rcarriga/cmp-dap", enabled = false },
{ "rcarriga/cmp-dap", enabled = false },
{ "L3MON4D3/LuaSnip", enabled = false },
{ "onsails/lspkind.nvim", enabled = false },
},
}

0 comments on commit de8e2ea

Please sign in to comment.