aboutsummaryrefslogtreecommitdiff
path: root/store/config/nvim/lua/setup/plugins/cmp.lua
diff options
context:
space:
mode:
authorYuqian Yang <crupest@crupest.life>2025-06-04 18:42:09 +0800
committerYuqian Yang <crupest@crupest.life>2025-06-04 18:43:00 +0800
commitabf1eb828f956ac95b76b252cc8fe0198090eca8 (patch)
tree5246b651fc5ddb31d74fe273b08ee2f533f8c591 /store/config/nvim/lua/setup/plugins/cmp.lua
parent30d3f94f11996259ca968e5f732f03e0d10e5233 (diff)
downloadcrupest-abf1eb828f956ac95b76b252cc8fe0198090eca8.tar.gz
crupest-abf1eb828f956ac95b76b252cc8fe0198090eca8.tar.bz2
crupest-abf1eb828f956ac95b76b252cc8fe0198090eca8.zip
chore(config): move dir.
Diffstat (limited to 'store/config/nvim/lua/setup/plugins/cmp.lua')
-rw-r--r--store/config/nvim/lua/setup/plugins/cmp.lua30
1 files changed, 30 insertions, 0 deletions
diff --git a/store/config/nvim/lua/setup/plugins/cmp.lua b/store/config/nvim/lua/setup/plugins/cmp.lua
new file mode 100644
index 0000000..be9f8ea
--- /dev/null
+++ b/store/config/nvim/lua/setup/plugins/cmp.lua
@@ -0,0 +1,30 @@
+local function setup()
+ local cmp = require("cmp")
+
+ cmp.setup {
+ snippet = {
+ expand = function(args)
+ vim.snippet.expand(args.body)
+ end,
+ },
+ mapping = cmp.mapping.preset.insert({
+ ['<C-b>'] = cmp.mapping.scroll_docs(-4),
+ ['<C-f>'] = cmp.mapping.scroll_docs(4),
+ ['<C-j>'] = cmp.mapping.select_next_item({ behavior = cmp.SelectBehavior.Select }),
+ ['<C-k>'] = cmp.mapping.select_prev_item({ behavior = cmp.SelectBehavior.Select }),
+ ['<C-e>'] = cmp.mapping.abort(),
+ ['<C-y>'] = cmp.mapping.confirm({ select = true }),
+ ['<CR>'] = cmp.mapping.confirm({ select = true }),
+ }),
+ sources = cmp.config.sources({
+ { name = 'nvim_lsp' },
+ { name = 'path' },
+ }, {
+ { name = 'buffer' },
+ })
+ }
+end
+
+return {
+ setup = setup
+}