local use_google = require("utils").use_google local function compare_by_ciderlsp_score(entry1, entry2) if entry1.completion_item.score ~= nil and entry2.completion_item.score ~= nil then print("LSP score " .. entry1.completion_item.score) print("LSP score " .. entry2.completion_item.score) return entry1.completion_item.score > entry2.completion_item.score end end 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 return { { "hrsh7th/nvim-cmp", event = { "InsertEnter", "CmdlineEnter" }, dependencies = { "f3fora/cmp-spell", "hrsh7th/cmp-buffer", "amarakon/nvim-cmp-buffer-lines", "hrsh7th/cmp-calc", "onsails/lspkind.nvim", "hrsh7th/cmp-cmdline", "Exafunction/codeium.nvim", "hrsh7th/cmp-emoji", "hrsh7th/cmp-nvim-lsp", "hrsh7th/cmp-nvim-lsp-document-symbol", "hrsh7th/cmp-nvim-lsp-signature-help", "dmitmel/cmp-cmdline-history", "hrsh7th/cmp-nvim-lua", "FelipeLema/cmp-async-path", "lukas-reineke/cmp-under-comparator", "ray-x/cmp-treesitter", }, config = function() vim.opt.shortmess:append("c") vim.opt.completeopt = { "menu", "menuone", "noselect" } local cmp = require("cmp") local compare = cmp.config.compare local conditionalSources = {} if use_google() then table.insert(conditionalSources, { name = "nvim_ciderlsp", priority = 9 }) table.insert(conditionalSources, { name = "analysislsp" }) else table.insert(conditionalSources, { name = "codeium", priority = 9 }) end local lspkind = require("lspkind") lspkind.init() -- Use buffer source for `/` and `?` (if you enabled `native_menu`, this won't work anymore). cmp.setup.cmdline({ "/", "?" }, { mapping = cmp.mapping.preset.cmdline(), sources = cmp.config.sources({ { name = "treesitter" }, }), }) -- Use cmdline & path source for ':' (if you enabled `native_menu`, this won't work anymore). cmp.setup.cmdline(":", { mapping = cmp.mapping.preset.cmdline(), sources = cmp.config.sources({ { name = "async_path" }, { name = "cmdline", option = { ignore_cmds = { "edit", "write", "tabedit" } } }, }), }) cmp.setup({ preselect = cmp.PreselectMode.None, sources = cmp.config.sources(require("utils").TableConcat({ { name = "luasnip", priority = 8 }, { name = "nvim_lsp", priority = 7 }, { name = "async_path" }, { name = "treesitter" }, { name = "buffer" }, { name = "calc" }, { name = "crates" }, { name = "emoji" }, }, conditionalSources)), sorting = { comparators = { -- compare.score_offset, -- not good at all compare.score, -- based on : score = score + ((#sources - (source_index - 1)) * sorting.priority_weight) compare.locality, compare.recently_used, compare.offset, compare.order, -- compare.scopes, -- what? -- compare.sort_text, -- compare.exact, -- compare.kind, -- compare.length, -- useless }, }, formatting = { format = lspkind.cmp_format({ menu = { async_path = " path", buffer = " Buf", cmdline = " cmd", codeium = "󰚩 Codeium", crates = " rust", luasnip = " snip", nvim_ciderlsp = "󰚩 Cider", analysislsp = "? analysislsp", nvim_lsp = " LSP", nvim_lua = " lua", treesitter = " ts", }, }), }, snippet = { expand = function(args) require("luasnip").lsp_expand(args.body) end, }, experimental = { native_menu = false, ghost_text = true, }, mapping = { [""] = cmp.mapping.scroll_docs(-4), [""] = cmp.mapping.scroll_docs(4), [""] = cmp.mapping.close(), [""] = cmp.mapping(cmp.mapping.complete(), { "i", "c" }), [""] = cmp.mapping.confirm({ select = true }), [""] = cmp.mapping(function(fallback) if cmp.visible() then if #cmp.get_entries() == 1 then cmp.confirm({ select = true }) else cmp.select_next_item() end elseif has_words_before() then cmp.complete() if #cmp.get_entries() == 1 then cmp.confirm({ select = true }) end else fallback() end end, { "i", "s" }), [""] = cmp.mapping(function() if cmp.visible() then cmp.select_prev_item() end end, { "i", "s" }), [""] = cmp.mapping(function(fallback) if cmp.visible() then cmp.select_prev_item() else fallback() -- The fallback function sends a already mapped key. In this case, it's probably ``. end end), [""] = cmp.mapping(function(fallback) if cmp.visible() then cmp.select_next_item() else fallback() -- The fallback function sends a already mapped key. In this case, it's probably ``. end end), }, }) end, }, }