dotfiles-nvim/lua/plugins/completions.lua

67 lines
2.1 KiB
Lua
Raw Normal View History

2023-12-27 02:20:46 +01:00
return {
"hrsh7th/nvim-cmp",
lazy = false,
dependencies = {
-- base
"hrsh7th/cmp-nvim-lsp",
"hrsh7th/cmp-buffer",
"hrsh7th/cmp-path",
"hrsh7th/cmp-cmdline",
-- snippets
"L3MON4D3/LuaSnip",
"saadparwaiz1/cmp_luasnip",
},
config = function()
2024-01-07 18:19:07 +01:00
local cmp = require("cmp")
2023-12-27 02:20:46 +01:00
cmp.setup({
snippet = {
expand = function(args)
require("luasnip").lsp_expand(args.body)
end,
},
window = {
completion = cmp.config.window.bordered(),
-- documentation = cmp.config.window.bordered(),
},
mapping = cmp.mapping.preset.insert({
["<C-b>"] = cmp.mapping.scroll_docs(-4),
["<C-f>"] = cmp.mapping.scroll_docs(4),
["<C-e>"] = cmp.mapping.abort(),
2024-01-08 23:17:06 +01:00
["<CR>"] = cmp.mapping.confirm({ select = false }),
2023-12-27 02:20:46 +01:00
}),
sources = cmp.config.sources({
2024-02-06 14:39:07 +01:00
{ name = "nvim_lsp", priority = 2 },
{ name = "luasnip", priority = 1 },
2023-12-27 02:20:46 +01:00
{ name = "buffer" },
2024-01-07 18:19:07 +01:00
}),
2023-12-27 02:20:46 +01:00
})
vim.api.nvim_create_autocmd("BufRead", {
group = vim.api.nvim_create_augroup("CmpSourceCargo", { clear = true }),
pattern = "Cargo.toml",
callback = function()
cmp.setup.buffer({ sources = { { name = "crates" } } })
end,
})
-- Use buffer source for `/` and `?` (if you enabled `native_menu`, this won"t work anymore).
cmp.setup.cmdline({ "/", "?" }, {
mapping = cmp.mapping.preset.cmdline(),
sources = {
2024-01-07 18:19:07 +01:00
{ name = "buffer" },
},
2023-12-27 02:20:46 +01:00
})
-- 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({
2024-01-07 18:19:07 +01:00
{ name = "path" },
2023-12-27 02:20:46 +01:00
}, {
2024-01-07 18:19:07 +01:00
{ name = "cmdline" },
}),
2023-12-27 02:20:46 +01:00
})
end,
}