mirror of
https://github.com/halfdan/dotfiles.git
synced 2025-10-31 20:46:03 +00:00
97 lines
2.4 KiB
Lua
97 lines
2.4 KiB
Lua
local cmp = require'cmp'
|
|
local lspkind = require('lspkind')
|
|
|
|
local source_mapping = {
|
|
buffer = "[Buffer]",
|
|
nvim_lsp = "[LSP]",
|
|
nvim_lua = "[Lua]",
|
|
path = "[Path]",
|
|
}
|
|
|
|
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({
|
|
preselect = cmp.PreselectMode.None,
|
|
snippet = {
|
|
expand = function(args)
|
|
vim.snippet.expand(args.body)
|
|
end,
|
|
},
|
|
mapping = {
|
|
["<C-p>"] = cmp.mapping.select_prev_item({ behavior = cmp.SelectBehavior.Insert }),
|
|
["<C-n>"] = cmp.mapping.select_next_item({ behavior = cmp.SelectBehavior.Insert }),
|
|
["<C-d>"] = cmp.mapping.scroll_docs(-4),
|
|
["<C-f>"] = cmp.mapping.scroll_docs(4),
|
|
["<C-Space>"] = cmp.mapping.complete(),
|
|
["<C-e>"] = cmp.mapping.close(),
|
|
["<CR>"] = cmp.mapping.confirm {
|
|
behavior = cmp.ConfirmBehavior.Replace,
|
|
select = false, -- only confirm if explicitly selected
|
|
},
|
|
|
|
["<Tab>"] = cmp.mapping(function(fallback)
|
|
if cmp.visible() then
|
|
cmp.select_next_item()
|
|
elseif vim.snippet.active({ direction = 1 }) then
|
|
vim.snippet.jump(1)
|
|
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 vim.snippet.active({ direction = -1 }) then
|
|
vim.snippet.jump(-1)
|
|
else
|
|
fallback()
|
|
end
|
|
end, { "i", "s" }),
|
|
},
|
|
|
|
sources = cmp.config.sources({
|
|
{ name = "nvim_lsp" },
|
|
}, {
|
|
{ name = "buffer" },
|
|
}),
|
|
|
|
formatting = {
|
|
format = function(entry, vim_item)
|
|
vim_item.kind = lspkind.presets.default[vim_item.kind]
|
|
local menu = source_mapping[entry.source.name]
|
|
vim_item.menu = menu
|
|
return vim_item
|
|
end,
|
|
},
|
|
|
|
experimental = {
|
|
ghost_text = true,
|
|
},
|
|
})
|
|
|
|
-- Use buffer source for `/` (if you enabled `native_menu`, this won't work anymore).
|
|
cmp.setup.cmdline({ '/', '?' }, {
|
|
sources = {
|
|
{ name = 'buffer' }
|
|
}
|
|
})
|
|
|
|
-- Use cmdline & path source for ':' (if you enabled `native_menu`, this won't work anymore).
|
|
cmp.setup.cmdline(':', {
|
|
sources = cmp.config.sources({
|
|
{ name = 'path' }
|
|
}, {
|
|
{ name = 'cmdline' }
|
|
}),
|
|
mappings = cmp.mapping.preset.cmdline(),
|
|
})
|
|
|