From 1ce2db91491626dd29fc424ad10811b51318d416 Mon Sep 17 00:00:00 2001 From: jamylak Date: Tue, 12 Mar 2024 09:21:01 +1100 Subject: [PATCH] Move the dependency to a more suitable place --- init.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/init.lua b/init.lua index db3f1bc5..c4a94766 100644 --- a/init.lua +++ b/init.lua @@ -629,9 +629,6 @@ require('lazy').setup { dependencies = { -- Snippet Engine & its associated nvim-cmp source { - -- nvim-cmp source for neovim Lua API - -- so that things like vim.keymap.set, etc. are autocompleted - 'hrsh7th/cmp-nvim-lua', 'L3MON4D3/LuaSnip', build = (function() -- Build Step is needed for regex support in snippets @@ -650,6 +647,9 @@ require('lazy').setup { -- into multiple repos for maintenance purposes. 'hrsh7th/cmp-nvim-lsp', 'hrsh7th/cmp-path', + -- nvim-cmp source for neovim Lua API + -- so that things like vim.keymap.set, etc. are autocompleted + 'hrsh7th/cmp-nvim-lua', -- If you want to add a bunch of pre-configured snippets, -- you can use this plugin to help you. It even has snippets