From 67cd260c156541519794a49dcbecdafe953691ab Mon Sep 17 00:00:00 2001 From: mightypanders Date: Tue, 23 Aug 2022 16:07:17 +0200 Subject: [PATCH] move cmp_config to own file --- nvim/lua/cmp_config.lua | 65 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 65 insertions(+) create mode 100644 nvim/lua/cmp_config.lua diff --git a/nvim/lua/cmp_config.lua b/nvim/lua/cmp_config.lua new file mode 100644 index 0000000..b0b038f --- /dev/null +++ b/nvim/lua/cmp_config.lua @@ -0,0 +1,65 @@ +local cmp = require("cmp") +local luasnip = require("luasnip") + +local has_words_before = function() + 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 +cmp.setup({ + snippet = { + expand = function(args) + require('luasnip').lsp_expand(args.body) -- For `luasnip` users. + end, + }, + mapping = { + [''] = cmp.mapping.select_prev_item(), + [''] = cmp.mapping.select_next_item(), + [''] = cmp.mapping(cmp.mapping.scroll_docs(-4), { 'i', 'c' }), + [''] = cmp.mapping(cmp.mapping.scroll_docs(4), { 'i', 'c' }), + [''] = cmp.mapping(cmp.mapping.complete(), { 'i', 'c' }), + [''] = cmp.config.disable, -- Specify `cmp.config.disable` if you want to remove the default `` mapping. + [''] = cmp.mapping({ + i = cmp.mapping.abort(), + c = cmp.mapping.close(), + }), + [''] = cmp.mapping.confirm({ select = true }), + [''] = 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"}), + [''] = 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"}) + }, + sources = cmp.config.sources({ + { name = 'nvim_lsp' }, + { name = 'luasnip' }, -- For luasnip users. + }, { + { name = 'buffer' }, + }) + }) + +cmp.setup.cmdline('/',{ +sources = { + { name = 'buffer' } + } +}) + +cmp.setup.cmdline(':',{ +sources = cmp.config.sources({ +{name = 'path'} +},{{name='cmdline'}}) +})