dotfiles/.config/nvim/lua/config/plugins/cmp.lua

84 lines
2 KiB
Lua
Raw Normal View History

2022-12-27 18:36:38 +01:00
local M = {
2022-12-28 12:23:25 +01:00
"hrsh7th/nvim-cmp",
dependencies = {
"andersevenrud/cmp-tmux",
"hrsh7th/cmp-nvim-lsp",
"hrsh7th/cmp-buffer",
"hrsh7th/cmp-emoji",
"hrsh7th/cmp-path",
"hrsh7th/cmp-cmdline",
"hrsh7th/cmp-nvim-lsp-signature-help",
"onsails/lspkind-nvim",
},
event = "InsertEnter",
2022-12-27 18:36:38 +01:00
}
function M.config()
2022-12-28 12:23:25 +01:00
local cmp = require("cmp")
2022-12-27 18:36:38 +01:00
2022-12-28 12:23:25 +01:00
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
2022-12-27 18:36:38 +01:00
2022-12-28 12:23:25 +01:00
vim.o.completeopt = "menuone,noselect"
2022-12-27 18:36:38 +01:00
2022-12-28 12:23:25 +01:00
cmp.setup({
completion = {
completeopt = "menu,menuone,noinsert",
},
2022-12-27 18:36:38 +01:00
2022-12-28 12:23:25 +01:00
formatting = {
format = require("lspkind").cmp_format(),
},
2022-12-27 18:36:38 +01:00
2022-12-28 12:23:25 +01:00
window = {
completion = cmp.config.window.bordered({
winhighlight = "Normal:PMenu,FloatBorder:PMenuBorder,CursorLine:PMenuSel,Search:None",
}),
documentation = cmp.config.window.bordered({
winhighlight = "Normal:PMenu,FloatBorder:PMenu,CursorLine:PMenuSel,Search:None",
}),
},
2022-12-27 18:36:38 +01:00
2022-12-28 12:23:25 +01:00
mapping = {
["<Up>"] = cmp.mapping(cmp.mapping.select_prev_item(), { "i", "c" }),
["<Down>"] = cmp.mapping(cmp.mapping.select_next_item(), { "i", "c" }),
["<C-d>"] = cmp.mapping.scroll_docs(-2),
["<C-u>"] = cmp.mapping.scroll_docs(2),
["<C-e>"] = cmp.mapping({
i = cmp.mapping.abort(),
c = cmp.mapping.close(),
}),
-- ["<CR>"] = cmp.mapping(cmp.mapping.confirm({ select = false }), { "i", "c" }),
-- ["<C-Space>"] = cmp.mapping(cmp.mapping.complete(), { "i", "c" }),
["<CR>"] = cmp.mapping(cmp.mapping.confirm({ select = true })),
["<C-Space>"] = cmp.mapping(cmp.mapping.complete(), {}),
},
-- experimental = {
-- ghost_text = {
-- hl_group = "LspCodeLens",
-- },
-- },
sources = cmp.config.sources({
{ name = "nvim_lsp" },
{ name = "nvim_lsp_signature_help" },
{ name = "buffer" },
{ name = "copilot" },
{
name = "tmux",
priority = 2,
option = {
all_panes = true,
trigger_characters = {},
},
},
{ name = "emoji" },
}),
})
2022-12-27 18:36:38 +01:00
end
return M