65 lines
1.5 KiB
Lua
65 lines
1.5 KiB
Lua
local cmp = require("cmp")
|
|
local luasnip = require("luasnip")
|
|
local lspkind = require("lspkind")
|
|
|
|
local has_words_before = function()
|
|
local line, col = unpack(vim.api.nvim_win_get_cursor(0))
|
|
return col ~= 0 and vim.api.nvim_buf_get_lines(0, line - 1, line, true)[1]:sub(col, col):match("%s") == nil
|
|
end
|
|
|
|
cmp.setup({
|
|
snippet = {
|
|
expand = function(args)
|
|
luasnip.lsp_expand(args.body)
|
|
end,
|
|
},
|
|
formatting = {
|
|
format = lspkind.cmp_format(),
|
|
},
|
|
mapping = {
|
|
["<Tab>"] = cmp.mapping(function(fallback)
|
|
if cmp.visible() then
|
|
cmp.select_next_item()
|
|
elseif luasnip.expand_or_jumpable() then
|
|
luasnip.expand_or_jump()
|
|
elseif has_words_before() then
|
|
cmp.complete()
|
|
else
|
|
fallback()
|
|
end
|
|
end, { "i", "s" }),
|
|
["<S-Tab>"] = cmp.mapping(function(fallback)
|
|
if cmp.visible() then
|
|
cmp.select_prev_item()
|
|
elseif luasnip.jumpable(-1) then
|
|
luasnip.jump(-1)
|
|
else
|
|
fallback()
|
|
end
|
|
end, { "i", "s" }),
|
|
["<CR>"] = cmp.mapping.confirm({ select = true }),
|
|
},
|
|
sources = {
|
|
{
|
|
name = "nvim_lsp",
|
|
option = {
|
|
php = {
|
|
keyword_pattern = [=[[\%(\$\k*\)\|\k\+]]=],
|
|
},
|
|
},
|
|
},
|
|
{ name = "nvim_lsp_signature_help" },
|
|
{ name = "luasnip" },
|
|
{
|
|
name = "buffer",
|
|
option = {
|
|
keyword_pattern = [=[[\%(\$\k*\)\|\k\+]]=],
|
|
},
|
|
},
|
|
{ name = "path" },
|
|
},
|
|
experimental = {
|
|
ghost_text = true,
|
|
},
|
|
})
|