From 6504a7df972c7a937ab58b103edb8c8f3ebb594b Mon Sep 17 00:00:00 2001 From: A Farzat Date: Tue, 1 Oct 2024 23:23:09 +0900 Subject: Add more plugin settings --- plugin-settings/nvim-cmp.lua | 56 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 56 insertions(+) create mode 100644 plugin-settings/nvim-cmp.lua (limited to 'plugin-settings/nvim-cmp.lua') diff --git a/plugin-settings/nvim-cmp.lua b/plugin-settings/nvim-cmp.lua new file mode 100644 index 0000000..defc39e --- /dev/null +++ b/plugin-settings/nvim-cmp.lua @@ -0,0 +1,56 @@ +local cmp = require("cmp") +local luasnip = require("luasnip") + +cmp.setup({ + enabled = true, + snippet = { + expand = function(args) -- REQUIRED - you must specify a snippet engine + require("luasnip").lsp_expand(args.body) -- For `luasnip` users. + end, + }, + mapping = cmp.mapping.preset.insert({ + [""] = cmp.mapping.scroll_docs(-4), + [""] = cmp.mapping.scroll_docs(4), + [""] = cmp.mapping.complete(), + [""] = cmp.mapping.abort(), + [""] = cmp.mapping.select_next_item(), + [""] = cmp.mapping.select_prev_item(), + [""] = cmp.mapping.confirm({ select = true }), -- Accept currently selected item. Set `select` to `false` to only confirm explicitly selected items. + [""] = cmp.mapping(function() + if luasnip.jumpable(1) then + luasnip.jump(1) + end + end, { "i", "s" }), + [""] = cmp.mapping(function() + if luasnip.jumpable(-1) then + luasnip.jump(-1) + end + end, { "i", "s" }), + }), + sources = cmp.config.sources({ + { name = "nvim_lsp" }, + { name = "luasnip" }, + { name = "nvim_lua" }, + }, { + { name = "buffer" }, + { name = "path" }, + }), +}) + +-- Use buffer source for `/` and `?` (if you enabled `native_menu`, this won't work anymore). +cmp.setup.cmdline({ "/", "?" }, { + mapping = cmp.mapping.preset.cmdline(), + sources = { + { name = "buffer" }, + }, +}) + +-- 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({ + { name = "path" }, + }, { + { name = "cmdline" }, + }), +}) -- cgit v1.2.3-70-g09d2