1
0
Fork 0
ansible-collection-dotfiles/roles/neovim/files/config/nvim/lua/plugins/nvim-cmp.lua

63 lines
1.3 KiB
Lua
Raw Normal View History

2022-02-22 21:49:55 +01:00
local cmp = require "cmp"
local luasnip = require "luasnip"
2021-11-09 03:03:21 +01:00
2021-11-12 01:18:09 +01:00
local has_words_before = function()
2022-02-22 21:49:55 +01:00
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
2021-11-12 01:18:09 +01:00
end
2021-11-09 03:03:21 +01:00
cmp.setup({
2022-02-22 21:49:55 +01:00
snippet = {
expand = function(args)
luasnip.lsp_expand(args.body)
end,
},
2021-11-11 20:44:32 +01:00
2022-02-22 21:49:55 +01:00
completion = {
completeopt = "menu,menuone,noinsert",
keyword_length = 2,
},
2021-11-11 20:44:32 +01:00
2022-02-22 21:49:55 +01:00
mapping = {
["<cr>"] = cmp.mapping.confirm(),
["<C-Space>"] = cmp.mapping.complete(),
["<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" }),
},
2021-11-11 20:44:32 +01:00
2022-02-22 21:49:55 +01:00
sources = {
{ name = "nvim_lsp" },
{ name = "nvim_lua" },
{ name = "luasnip" },
{
name = "buffer",
option = {
keyword_pattern = [[\k\+]],
-- Use all buffers to complete.
get_bufnrs = function()
return vim.api.nvim_list_bufs()
end,
},
},
{ name = "path" },
},
2021-11-09 03:03:21 +01:00
})