mirror of
https://github.com/genebean/dots.git
synced 2026-03-27 01:17:42 -04:00
https://stackoverflow.com/questions/73092651/neovim-how-to-filter-out-text-snippets-from-nvim-lspconfig-nvim-cmp#comment129185571_73144320 lead me to https://github.com/hrsh7th/nvim-cmp/pull/1067 which fixed the wonky mess that was happening.
49 lines
1.3 KiB
Lua
49 lines
1.3 KiB
Lua
return {
|
|
{
|
|
"hrsh7th/nvim-cmp",
|
|
config = function()
|
|
local cmp = require("cmp")
|
|
require("luasnip.loaders.from_vscode").lazy_load()
|
|
|
|
cmp.setup({
|
|
snippet = {
|
|
expand = function(args)
|
|
require("luasnip").lsp_expand(args.body)
|
|
end,
|
|
},
|
|
window = {
|
|
completion = cmp.config.window.bordered(),
|
|
documentation = cmp.config.window.bordered(),
|
|
},
|
|
mapping = cmp.mapping.preset.insert({
|
|
["<C-b>"] = cmp.mapping.scroll_docs(-4),
|
|
["<C-f>"] = cmp.mapping.scroll_docs(4),
|
|
["<C-Space>"] = cmp.mapping.complete(),
|
|
["<C-e>"] = cmp.mapping.abort(),
|
|
["<CR>"] = cmp.mapping.confirm({ select = true }),
|
|
}),
|
|
sources = cmp.config.sources({
|
|
{
|
|
name = "nvim_lsp",
|
|
entry_filter = function(entry)
|
|
return require("cmp.types").lsp.CompletionItemKind[entry:get_kind()] ~= "Text"
|
|
end,
|
|
},
|
|
{ name = "luasnip" },
|
|
}, {
|
|
{ name = "buffer" },
|
|
}),
|
|
})
|
|
end,
|
|
},
|
|
{
|
|
"hrsh7th/cmp-nvim-lsp",
|
|
},
|
|
{
|
|
"L3MON4D3/LuaSnip",
|
|
dependencies = {
|
|
"saadparwaiz1/cmp_luasnip",
|
|
"rafamadriz/friendly-snippets",
|
|
},
|
|
},
|
|
}
|