131 lines
3.9 KiB
Lua
131 lines
3.9 KiB
Lua
return {
|
|
{
|
|
"L3MON4D3/LuaSnip",
|
|
dependencies = { "rafamadriz/friendly-snippets" },
|
|
event = "InsertEnter",
|
|
build = "make install_jsregexp",
|
|
config = function()
|
|
require("luasnip.loaders.from_vscode").lazy_load()
|
|
end,
|
|
},
|
|
|
|
{
|
|
"hrsh7th/nvim-cmp",
|
|
event = { "InsertEnter", "CmdlineEnter" },
|
|
dependencies = {
|
|
"neovim/nvim-lspconfig",
|
|
"hrsh7th/cmp-nvim-lsp",
|
|
"hrsh7th/cmp-buffer",
|
|
"hrsh7th/cmp-path",
|
|
"hrsh7th/cmp-cmdline",
|
|
"L3MON4D3/LuaSnip",
|
|
"saadparwaiz1/cmp_luasnip",
|
|
"onsails/lspkind-nvim",
|
|
"windwp/nvim-autopairs",
|
|
},
|
|
opts = function()
|
|
local cmp = require("cmp")
|
|
local cmp_autopairs = require("nvim-autopairs.completion.cmp")
|
|
|
|
cmp.event:on("confirm_done", cmp_autopairs.on_confirm_done())
|
|
|
|
cmp.setup.cmdline(":", {
|
|
mapping = cmp.mapping.preset.cmdline(),
|
|
sources = cmp.config.sources({
|
|
{ name = "path" },
|
|
}, {
|
|
{ name = "cmdline" },
|
|
}),
|
|
})
|
|
|
|
local lspkind_status_ok, lspkind = pcall(require, "lspkind")
|
|
local snip_status_ok, luasnip = pcall(require, "luasnip")
|
|
|
|
if not snip_status_ok then
|
|
return
|
|
end
|
|
|
|
local win_conf = cmp.config.window.bordered({
|
|
winhighlight = "FloatBorder:FloatBorder",
|
|
scrollbar = false,
|
|
})
|
|
|
|
return {
|
|
snippet = {
|
|
expand = function(args)
|
|
luasnip.lsp_expand(args.body)
|
|
end,
|
|
},
|
|
window = {
|
|
completion = win_conf,
|
|
documentation = win_conf,
|
|
},
|
|
sources = cmp.config.sources({
|
|
{ name = "nvim_lsp", priority = 1000 },
|
|
{ name = "crates", priority = 1000 },
|
|
{ name = "vim-dadbod-completion", priority = 1000 },
|
|
{ name = "luasnip", priority = 750 },
|
|
{ name = "buffer", priority = 500 },
|
|
{ name = "path", priority = 250 },
|
|
}),
|
|
mapping = {
|
|
["<Up>"] = cmp.mapping.select_prev_item({ behavior = cmp.SelectBehavior.Select }),
|
|
["<Down>"] = cmp.mapping.select_next_item({ behavior = cmp.SelectBehavior.Select }),
|
|
["<C-p>"] = cmp.mapping.select_prev_item({ behavior = cmp.SelectBehavior.Insert }),
|
|
["<C-n>"] = cmp.mapping.select_next_item({ behavior = cmp.SelectBehavior.Insert }),
|
|
["<C-k>"] = cmp.mapping.select_prev_item({ behavior = cmp.SelectBehavior.Insert }),
|
|
["<C-j>"] = cmp.mapping.select_next_item({ behavior = cmp.SelectBehavior.Insert }),
|
|
["<C-u>"] = cmp.mapping(cmp.mapping.scroll_docs(-4), { "i", "c" }),
|
|
["<C-d>"] = cmp.mapping(cmp.mapping.scroll_docs(4), { "i", "c" }),
|
|
["<C-Space>"] = cmp.mapping(cmp.mapping.complete(), { "i", "c" }),
|
|
["<C-y>"] = cmp.config.disable,
|
|
["<C-e>"] = cmp.mapping({ i = cmp.mapping.abort(), c = cmp.mapping.close() }),
|
|
["<CR>"] = cmp.mapping.confirm({ select = false }),
|
|
["<Tab>"] = cmp.mapping(function(fallback)
|
|
if cmp.visible() then
|
|
cmp.select_next_item()
|
|
elseif luasnip.expand_or_jumpable() then
|
|
luasnip.expand_or_jump()
|
|
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" }),
|
|
},
|
|
formatting = {
|
|
format = lspkind_status_ok and lspkind.cmp_format({
|
|
mode = "symbol",
|
|
maxwidth = 25,
|
|
ellipsis_char = "...",
|
|
before = function(entry, vim_item)
|
|
if vim_item.kind == "Color" and entry.completion_item.documentation then
|
|
local _, _, r, g, b =
|
|
string.find(entry.completion_item.documentation, "^rgb%((%d+), (%d+), (%d+)")
|
|
if r then
|
|
local color = string.format("%02x", r)
|
|
.. string.format("%02x", g)
|
|
.. string.format("%02x", b)
|
|
local group = "Tw_" .. color
|
|
if vim.fn.hlID(group) < 1 then
|
|
vim.api.nvim_set_hl(0, group, { fg = "#" .. color })
|
|
end
|
|
vim_item.kind_hl_group = group
|
|
return vim_item
|
|
end
|
|
end
|
|
return vim_item
|
|
end,
|
|
}),
|
|
},
|
|
}
|
|
end,
|
|
},
|
|
}
|