From b834788f7dc110e4a4f79b0356f1293d6d129b13 Mon Sep 17 00:00:00 2001 From: Nicholas Hall Date: Wed, 29 Apr 2026 20:42:44 -0500 Subject: Omarchy lazyvim --- after/plugin/nvim-cmp.lua | 21 --------------------- 1 file changed, 21 deletions(-) delete mode 100644 after/plugin/nvim-cmp.lua (limited to 'after/plugin/nvim-cmp.lua') diff --git a/after/plugin/nvim-cmp.lua b/after/plugin/nvim-cmp.lua deleted file mode 100644 index 6548b71..0000000 --- a/after/plugin/nvim-cmp.lua +++ /dev/null @@ -1,21 +0,0 @@ -local cmp = require('cmp') --- using lsp-zero -local cmp_action = require('lsp-zero').cmp_action() - -cmp.setup({ - mapping = cmp.mapping.preset.insert({ - -- `Enter` key to confirm completion - [''] = cmp.mapping.confirm({select = false}), - - -- Ctrl+Space to trigger completion menu - [''] = cmp.mapping.complete(), - - -- Navigate between snippet placeholder - [''] = cmp_action.luasnip_jump_forward(), - [''] = cmp_action.luasnip_jump_backward(), - - -- Scroll up and down in the completion documentation - [''] = cmp.mapping.scroll_docs(-4), - [''] = cmp.mapping.scroll_docs(4), - }) -}) -- cgit v1.2.3