Dot_Files/.config/nvim/lua/plugins/configs/_cmp.lua

219 lines
5.2 KiB
Lua
Raw Normal View History

2022-01-21 00:44:17 -06:00
local cmp = require("cmp")
2022-04-28 05:24:39 -05:00
local compare = cmp.config.compare
local luasnip = require("luasnip")
2022-01-21 00:44:17 -06:00
2022-01-25 20:38:59 -06:00
local kind_icons = {
Text = "",
Method = "",
Function = "",
Constructor = "",
Field = "",
Variable = "",
Class = "",
Interface = "",
Module = "",
Property = "",
Unit = "",
Value = "",
Enum = "",
Keyword = "",
Snippet = "",
Color = "",
File = "",
Reference = "",
Folder = "",
EnumMember = "",
Constant = "",
Struct = "",
Event = "",
Operator = "",
TypeParameter = "",
}
2022-01-21 00:44:17 -06:00
local has_words_before = function()
2022-02-04 10:36:23 -06: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
end
-- Load Snippets
require("luasnip.loaders.from_vscode").load()
2022-01-21 00:44:17 -06:00
cmp.setup({
formatting = {
2022-01-25 20:38:59 -06:00
format = function(entry, vim_item)
-- Kind icons
vim_item.kind = string.format("%s %s", kind_icons[vim_item.kind], vim_item.kind) -- This concatonates the icons with the name of the item kind
-- Source
vim_item.menu = ({
2022-04-28 05:24:39 -05:00
fuzzy_buffer = "[Buffer]",
nvim_lsp = "[Lsp]",
2022-01-21 00:44:17 -06:00
luasnip = "[LuaSnip]",
nvim_lua = "[Lua]",
path = "[Path]",
2022-04-28 05:24:39 -05:00
dictionary = "[Dictionary]",
calc = "[Calculator]",
neorg = "[Neorg]",
emoji = "[Emoji]",
zsh = "[Zsh]",
crates = "[Crates]",
cmdline_history = "[Cmd History]",
rg = "[Ripgrep]",
npm = "[Npm],",
2022-01-25 20:38:59 -06:00
})[entry.source.name]
return vim_item
end,
2022-01-21 00:44:17 -06:00
},
2022-04-15 10:47:28 -05:00
window = {
documentation = {
border = { "", "", "", "", "", "", "", "" },
},
},
experimental = {
ghost_text = true,
native_menu = false,
},
2022-01-21 00:44:17 -06:00
snippet = {
-- REQUIRED - you must specify a snippet engine
expand = function(args)
require("luasnip").lsp_expand(args.body) -- For `luasnip` users.
end,
},
mapping = {
["<C-b>"] = cmp.mapping(cmp.mapping.scroll_docs(-4), { "i", "c" }),
["<C-f>"] = cmp.mapping(cmp.mapping.scroll_docs(4), { "i", "c" }),
["<C-Space>"] = cmp.mapping(cmp.mapping.complete(), { "i", "c" }),
["<C-y>"] = cmp.config.disable, -- Specify `cmp.config.disable` if you want to remove the default `<C-y>` mapping.
["<C-e>"] = cmp.mapping({
i = cmp.mapping.abort(),
c = cmp.mapping.close(),
}),
["<CR>"] = cmp.mapping.confirm({ select = false }), -- Accept currently selected item. Set `select` to `false` to only confirm explicitly selected items.
2022-04-27 12:54:14 -05:00
["<C-Tab>"] = cmp.mapping(function(fallback)
2022-04-28 05:24:39 -05:00
if luasnip.jumpable() then
luasnip.jump(1)
elseif luasnip.expand_or_jumpable() then
luasnip.expand_or_jump()
else
fallback()
end
end, { "i", "s" }),
2022-04-27 12:54:14 -05:00
["<C-S-Tab>"] = cmp.mapping(function(fallback)
if luasnip.jumpable(-1) then
luasnip.jump(-1)
else
fallback()
end
end, { "i", "s" }),
["<Tab>"] = cmp.mapping(function(fallback)
2022-04-28 05:24:39 -05:00
if cmp.visible() then
cmp.select_next_item()
2022-04-28 05:24:39 -05:00
elseif luasnip.expand_or_jumpable() then
2022-04-27 12:54:14 -05:00
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" }),
2022-01-21 00:44:17 -06:00
},
2022-04-15 10:47:28 -05:00
sources = cmp.config.sources({
{ name = "nvim_lsp" },
{ name = "nvim_lua" },
{ name = "path" },
{ name = "emoji" },
{ name = "neorg" },
{ name = "luasnip" }, -- For luasnip users.
2022-04-27 12:54:14 -05:00
{ name = "calc" },
2022-04-28 05:24:39 -05:00
{ name = "zsh" },
{ name = "fuzzy_buffer" },
{ name = "rg" },
{ name = "npm", keyword_length = 2 },
2022-04-27 12:54:14 -05:00
{
name = "dictionary",
keyword_length = 2,
},
}),
2022-04-28 05:24:39 -05:00
sorting = {
priority_weight = 2,
comparators = {
require("cmp_fuzzy_buffer.compare"),
compare.offset,
compare.exact,
compare.score,
compare.recently_used,
compare.kind,
compare.sort_text,
compare.length,
compare.order,
},
},
2022-04-27 12:54:14 -05:00
})
-- Configure Dictionary
require("cmp_dictionary").setup({
2022-04-28 05:24:39 -05:00
dic = {
["*"] = { require("os").getenv("HOME") .. "/.dict/primary_dict" },
},
first_case_insensitive = true,
async = true,
2022-04-27 12:54:14 -05:00
})
-- Git Commit Completions
cmp.setup.filetype("gitcommit", {
sources = cmp.config.sources({
2022-04-28 05:24:39 -05:00
{ name = "conventionalcommits" },
2022-04-27 12:54:14 -05:00
{ name = "buffer" },
2022-04-15 10:47:28 -05:00
}),
2022-01-21 00:44:17 -06:00
})
2022-04-28 05:24:39 -05:00
cmp.setup.filetype("toml", {
sources = cmp.config.sources({
{ name = "crates" },
}),
})
2022-01-21 00:44:17 -06:00
-- Use buffer source for `/` (if you enabled `native_menu`, this won't work anymore).
cmp.setup.cmdline("/", {
2022-04-27 12:54:14 -05:00
mapping = cmp.mapping.preset.cmdline(),
sources = cmp.config.sources({
2022-04-28 05:24:39 -05:00
-- { name = "buffer" },
{ name = "fuzzy_buffer" },
{ name = "cmdline_history" },
2022-04-27 12:54:14 -05:00
}),
2022-01-21 00:44:17 -06:00
})
2022-04-15 12:15:32 -05:00
cmp.setup.cmdline("?", {
2022-04-27 12:54:14 -05:00
mapping = cmp.mapping.preset.cmdline(),
sources = cmp.config.sources({
2022-04-28 05:24:39 -05:00
{ name = "fuzzy_buffer" },
{ name = "cmdline_history" },
}),
})
cmp.setup.cmdline("@", {
mapping = cmp.mapping.preset.cmdline(),
sources = cmp.config.sources({
{ name = "fuzzy_buffer" },
{ name = "cmdline_history" },
2022-04-27 12:54:14 -05:00
}),
2022-04-15 12:15:32 -05:00
})
2022-01-21 00:44:17 -06:00
-- Use cmdline & path source for ':' (if you enabled `native_menu`, this won't work anymore).
cmp.setup.cmdline(":", {
2022-04-27 12:54:14 -05:00
mapping = cmp.mapping.preset.cmdline(),
2022-01-21 00:44:17 -06:00
sources = cmp.config.sources({
{ name = "path" },
{ name = "cmdline" },
2022-04-28 05:24:39 -05:00
{ name = "cmdline_history" },
2022-01-21 00:44:17 -06:00
}),
})