2022-11-02 22:50:13 -07:00
|
|
|
-- Setup nvim-cmp.
|
|
|
|
local cmp = require 'cmp'
|
|
|
|
local lspkind = require('lspkind')
|
|
|
|
local lspconfig = require('lspconfig')
|
|
|
|
-- luasnip setup
|
|
|
|
local luasnip = require 'luasnip'
|
|
|
|
local highlight = require('cmp.utils.highlight')
|
|
|
|
|
2023-08-11 18:12:35 -07:00
|
|
|
lspkind.init({ symbol_map = { Copilot = "" } })
|
2022-11-02 22:50:13 -07:00
|
|
|
|
2023-08-11 18:12:35 -07:00
|
|
|
vim.api.nvim_set_hl(0, "CmpItemKindCopilot", { fg = "#6CC644" })
|
2022-11-02 22:50:13 -07:00
|
|
|
|
|
|
|
cmp.setup({
|
|
|
|
snippet = {
|
|
|
|
expand = function(args)
|
|
|
|
-- vim.fn["vsnip#anonymous"](args.body) -- For `vsnip` users.
|
|
|
|
require('luasnip').lsp_expand(args.body) -- For `luasnip` users.
|
|
|
|
-- require('snippy').expand_snippet(args.body) -- For `snippy` users.
|
|
|
|
-- vim.fn["UltiSnips#Anon"](args.body) -- For `ultisnips` users.
|
2023-08-11 18:12:35 -07:00
|
|
|
end
|
2022-11-02 22:50:13 -07:00
|
|
|
},
|
|
|
|
capabilities = capabilities,
|
|
|
|
mapping = {
|
|
|
|
['<C-p>'] = cmp.mapping(function(fallback)
|
|
|
|
if cmp.visible() then
|
|
|
|
cmp.select_prev_item()
|
|
|
|
elseif luasnip.expand_or_jumpable() then
|
|
|
|
luasnip.expand_or_jump()
|
|
|
|
elseif has_words_before() then
|
|
|
|
cmp.complete()
|
|
|
|
else
|
|
|
|
fallback()
|
|
|
|
end
|
|
|
|
end, { 'i', 's' }),
|
|
|
|
['<C-n>'] = 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' }),
|
|
|
|
['<C-d>'] = cmp.mapping.scroll_docs(-4),
|
|
|
|
['<C-f>'] = cmp.mapping.scroll_docs(4),
|
|
|
|
['<C-Space>'] = cmp.mapping.complete(),
|
2023-03-10 11:42:54 -08:00
|
|
|
['<C-e>'] = cmp.mapping.abort(),
|
2022-11-02 22:50:13 -07:00
|
|
|
['<CR>'] = cmp.mapping.confirm {
|
|
|
|
behavior = cmp.ConfirmBehavior.Replace,
|
2023-08-11 18:12:35 -07:00
|
|
|
select = false
|
2022-11-02 22:50:13 -07:00
|
|
|
},
|
|
|
|
-- ["<Tab>"] = cmp.mapping(function(fallback)
|
|
|
|
-- if cmp.visible() then
|
|
|
|
-- cmp.select_next_item()
|
|
|
|
-- elseif luasnip.expand_or_jumpable() then
|
|
|
|
-- luasnip.expand_or_jump()
|
|
|
|
-- else
|
|
|
|
-- fallback()
|
|
|
|
-- end
|
2023-08-11 18:12:35 -07:00
|
|
|
-- end, { "i", "s" }),
|
2022-11-02 22:50:13 -07:00
|
|
|
["<Tab>"] = vim.schedule_wrap(function(fallback)
|
2023-08-11 18:12:35 -07:00
|
|
|
if cmp.visible() and has_words_before() then
|
|
|
|
cmp.select_next_item({ behavior = cmp.SelectBehavior.Select })
|
|
|
|
elseif luasnip.expand_or_jumpable() then
|
|
|
|
luasnip.expand_or_jump()
|
|
|
|
else
|
|
|
|
fallback()
|
|
|
|
end
|
2022-11-02 22:50:13 -07:00
|
|
|
end),
|
|
|
|
['<S-Tab>'] = cmp.mapping(function()
|
2023-08-11 18:12:35 -07:00
|
|
|
if cmp.visible() then cmp.select_prev_item() end
|
|
|
|
end, { "i", "s" })
|
2022-11-02 22:50:13 -07:00
|
|
|
},
|
|
|
|
window = {
|
|
|
|
completion = {
|
2023-08-11 18:12:35 -07:00
|
|
|
winhighlight = "Normal:Pmenu,FloatBorder:Pmenu,Search:None",
|
|
|
|
col_offset = -3,
|
|
|
|
side_padding = 0,
|
|
|
|
border = "rounded",
|
|
|
|
borderchars = {
|
|
|
|
"─", "│", "─", "│", "╭", "╮", "╯", "╰"
|
|
|
|
}
|
2022-11-02 22:50:13 -07:00
|
|
|
},
|
|
|
|
documentation = {
|
2023-08-11 18:12:35 -07:00
|
|
|
border = "rounded",
|
|
|
|
borderchars = {
|
|
|
|
"─", "│", "─", "│", "╭", "╮", "╯", "╰"
|
|
|
|
}
|
|
|
|
-- padding = 15,
|
2022-11-02 22:50:13 -07:00
|
|
|
}
|
|
|
|
},
|
|
|
|
formatting = {
|
2023-05-03 23:59:17 -07:00
|
|
|
-- options: 'text', 'text_symbol', 'symbol_text', 'symbol'
|
|
|
|
-- mode = 'symbol_text',
|
2022-11-02 22:50:13 -07:00
|
|
|
fields = { "kind", "abbr", "menu" },
|
|
|
|
format = function(entry, vim_item)
|
2023-08-11 18:12:35 -07:00
|
|
|
local kind = require("lspkind").cmp_format({
|
|
|
|
mode = "symbol_text",
|
|
|
|
maxwidth = 75,
|
|
|
|
symbol_map = {
|
|
|
|
Copilot = "",
|
|
|
|
Function = "",
|
|
|
|
Text = "",
|
|
|
|
Method = "",
|
|
|
|
Operator = "",
|
|
|
|
Keyword = "",
|
|
|
|
Variable = "",
|
|
|
|
Field = "",
|
|
|
|
Class = "",
|
|
|
|
Interface = "",
|
|
|
|
Module = "",
|
|
|
|
Property = "",
|
|
|
|
Unit = "",
|
|
|
|
Value = "",
|
|
|
|
Enum = "",
|
|
|
|
Snippet = "",
|
|
|
|
Color = "",
|
|
|
|
File = "",
|
|
|
|
Reference = "",
|
|
|
|
Folder = "",
|
|
|
|
EnumMember = "",
|
|
|
|
Constant = "",
|
|
|
|
Struct = "",
|
|
|
|
Event = "",
|
|
|
|
TypeParameter = ""
|
|
|
|
}
|
|
|
|
})(entry, vim_item)
|
|
|
|
local strings = vim.split(kind.kind, "%s", { trimempty = true })
|
|
|
|
kind.kind = " " .. strings[1] .. " "
|
|
|
|
kind.menu = " (" .. strings[2] .. ")"
|
2022-11-02 22:50:13 -07:00
|
|
|
|
2023-08-11 18:12:35 -07:00
|
|
|
return kind
|
|
|
|
end
|
2022-11-02 22:50:13 -07:00
|
|
|
-- format = lspkind.cmp_format({
|
|
|
|
-- mode = 'symbol_text', -- show only symbol annotations
|
|
|
|
-- menu = ({
|
|
|
|
-- buffer = "[Buffer]",
|
|
|
|
-- nvim_lsp = "[LSP]",
|
|
|
|
-- luasnip = "[LuaSnip]",
|
|
|
|
-- nvim_lua = "[Lua]",
|
|
|
|
-- latex_symbols = "[Latex]",
|
|
|
|
-- })
|
|
|
|
-- })
|
|
|
|
},
|
|
|
|
sources = cmp.config.sources({
|
2023-08-11 18:12:35 -07:00
|
|
|
{ name = "copilot", group_index = 2 }, { name = "path", group_index = 2 },
|
|
|
|
{ name = 'nvim_lsp', group_index = 2 },
|
|
|
|
{ name = 'nvim_lsp_signature_help', group_index = 2 },
|
2023-03-10 11:42:54 -08:00
|
|
|
{ name = 'nvim_lsp_document_symbol', group_index = 2 },
|
2023-08-15 23:31:31 -07:00
|
|
|
{ name = 'vim-dadbod-completion', group_index = 2 },
|
2023-08-15 08:48:03 -07:00
|
|
|
{ name = 'neorg', group_index = 2 }, -- For luasnip users.
|
2023-08-11 18:12:35 -07:00
|
|
|
{ name = 'luasnip', group_index = 2 }, -- For luasnip users.
|
2022-11-02 22:50:13 -07:00
|
|
|
{
|
2023-08-11 18:12:35 -07:00
|
|
|
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
|
|
|
|
}
|
2022-11-02 22:50:13 -07:00
|
|
|
}
|
|
|
|
-- { name = 'ultisnips' }, -- For ultisnips users.
|
|
|
|
-- { name = 'snippy' }, -- For snippy users.
|
2023-08-11 18:12:35 -07:00
|
|
|
}, { { name = 'buffer' } }),
|
2022-11-02 22:50:13 -07:00
|
|
|
sorting = {
|
|
|
|
priority_weight = 2,
|
|
|
|
comparators = {
|
2023-08-11 18:12:35 -07:00
|
|
|
require("copilot_cmp.comparators").prioritize,
|
|
|
|
require("copilot_cmp.comparators").score,
|
|
|
|
require("copilot_cmp.comparators").recently_used,
|
|
|
|
require("copilot_cmp.comparators").kind,
|
|
|
|
require("copilot_cmp.comparators").sort_text,
|
|
|
|
require("copilot_cmp.comparators").length,
|
|
|
|
require("copilot_cmp.comparators").order,
|
2023-05-04 09:15:14 -07:00
|
|
|
|
2023-08-11 18:12:35 -07:00
|
|
|
-- Below is the default comparitor list and order for nvim-cmp
|
|
|
|
cmp.config.compare.offset,
|
|
|
|
-- cmp.config.compare.scopes, --this is commented in nvim-cmp too
|
|
|
|
cmp.config.compare.exact, cmp.config.compare.score,
|
|
|
|
cmp.config.compare.recently_used, cmp.config.compare.locality,
|
|
|
|
cmp.config.compare.kind, cmp.config.compare.sort_text,
|
|
|
|
cmp.config.compare.length, cmp.config.compare.order
|
|
|
|
}
|
|
|
|
}
|
2022-11-02 22:50:13 -07:00
|
|
|
})
|
|
|
|
|
2023-03-10 11:42:54 -08:00
|
|
|
cmp.setup.cmdline('/', {
|
2023-08-11 18:12:35 -07:00
|
|
|
mapping = cmp.mapping.preset.cmdline(),
|
|
|
|
sources = { { name = 'buffer' } }
|
2023-03-10 11:42:54 -08:00
|
|
|
})
|
|
|
|
|
|
|
|
cmp.setup.cmdline(':', {
|
2023-08-11 18:12:35 -07:00
|
|
|
mapping = cmp.mapping.preset.cmdline(),
|
|
|
|
sources = cmp.config.sources({ { name = 'path' } }, {
|
|
|
|
{ name = 'cmdline', option = { ignore_cmds = { 'Man', '!' } } }
|
|
|
|
})
|
2023-03-10 11:42:54 -08:00
|
|
|
})
|
|
|
|
|
2023-03-01 16:54:47 -08:00
|
|
|
local capabilities = require('cmp_nvim_lsp').default_capabilities()
|
2022-11-02 22:50:13 -07:00
|
|
|
|
2023-08-11 18:12:35 -07:00
|
|
|
local servers = {
|
2023-08-15 17:07:20 -07:00
|
|
|
'bashls', 'jedi_language_server', 'jsonls', 'yamlls', 'vimls', 'dotls',
|
|
|
|
'dockerls', 'html', 'cssls', 'lua_ls'
|
2023-08-11 18:12:35 -07:00
|
|
|
}
|
2022-11-02 22:50:13 -07:00
|
|
|
for _, lsp in ipairs(servers) do
|
2023-08-15 04:18:31 -07:00
|
|
|
if lsp == 'lua_ls' then
|
|
|
|
lspconfig[lsp].setup {
|
|
|
|
-- on_attach = my_custom_on_attach,
|
|
|
|
capabilities = capabilities,
|
|
|
|
callSnippet = "Replace"
|
|
|
|
}
|
|
|
|
else
|
2023-08-16 18:17:45 -07:00
|
|
|
lspconfig[lsp].setup { capabilities = capabilities }
|
2023-08-15 04:18:31 -07:00
|
|
|
end
|
2022-11-02 22:50:13 -07:00
|
|
|
end
|
|
|
|
|
2023-08-11 18:12:35 -07:00
|
|
|
cmp.event:on("menu_opened",
|
|
|
|
function() vim.b.copilot_suggestion_hidden = true end)
|
|
|
|
cmp.event:on("menu_closed",
|
|
|
|
function() vim.b.copilot_suggestion_hidden = false end)
|