local present, cmp = pcall(require, "cmp") if not present then return end require("base46").load_highlight "cmp" vim.opt.completeopt = "menuone,noselect" local function border(hl_name) return { { "╭", hl_name }, { "─", hl_name }, { "╮", hl_name }, { "│", hl_name }, { "╯", hl_name }, { "─", hl_name }, { "╰", hl_name }, { "│", hl_name }, } end local cmp_window = require "cmp.utils.window" cmp_window.info_ = cmp_window.info cmp_window.info = function(self) local info = self:info_() info.scrollable = false return info end local options = { window = { completion = { border = border "CmpBorder", winhighlight = "Normal:CmpPmenu,CursorLine:PmenuSel,Search:None", }, documentation = { border = border "CmpDocBorder", }, }, snippet = { expand = function(args) require("luasnip").lsp_expand(args.body) end, }, formatting = { format = function(entry, vim_item) local icons = require("nvchad_ui.icons").lspkind vim_item.kind = string.format("%s %s", icons[vim_item.kind], vim_item.kind) -- show source vim_item.menu = ({ buffer = ":buf", nvim_lsp = ":lsp", luasnip = ":lsnp", nvim_lua = ":lua", latex_symbols = ":ltx", })[entry.source.name] return vim_item end, }, mapping = { [""] = cmp.mapping.select_prev_item(), [""] = cmp.mapping.select_next_item(), [""] = cmp.mapping.scroll_docs(-4), [""] = cmp.mapping.scroll_docs(4), -- Try to emulate native neovim C-x completion style behavior [""] = cmp.mapping.complete(), [""] = cmp.mapping.close(), [""] = cmp.mapping.abort(), [""] = cmp.mapping.confirm { behavior = cmp.ConfirmBehavior.Replace, select = false, }, [""] = cmp.mapping.confirm { behavior = cmp.ConfirmBehavior.Replace, select = false, }, -- luasnip forward jump [""] = cmp.mapping(function(fallback) local luasnip = require("luasnip") if luasnip.jumpable(1) then luasnip.jump(1) elseif luasnip.expandable() then luasnip.expand_or_jump() else fallback() end end, { "i", "s", }), -- luasnip reverse jump [""] = cmp.mapping(function(fallback) local luasnip = require("luasnip") if luasnip.jumpable(-1) then luasnip.jump(-1) else fallback() end end, { "i", "s", }), [""] = cmp.mapping(function(fallback) if cmp.visible() then cmp.select_next_item() elseif require("luasnip").expand_or_jumpable() then vim.fn.feedkeys(vim.api.nvim_replace_termcodes("luasnip-expand-or-jump", true, true, true), "") else fallback() end end, { "i", "s", }), [""] = cmp.mapping(function(fallback) if cmp.visible() then cmp.select_prev_item() elseif require("luasnip").jumpable(-1) then vim.fn.feedkeys(vim.api.nvim_replace_termcodes("luasnip-jump-prev", true, true, true), "") else fallback() end end, { "i", "s", }), }, sources = { { name = "luasnip" }, { name = "nvim_lsp" }, { name = "buffer", option = { get_bufnrs = function() local bufs = {} for _, win in ipairs(vim.api.nvim_list_wins()) do bufs[vim.api.nvim_win_get_buf(win)] = true end return vim.tbl_keys(bufs) end }, }, { name = "nvim_lua" }, { name = "path" }, }, } -- check for any override options = require("core.utils").load_override(options, "hrsh7th/nvim-cmp") cmp.setup(options)