Move the dependency to a more suitable place

This commit is contained in:
jamylak 2024-03-12 09:21:01 +11:00
parent 618a30bb49
commit 1ce2db9149
1 changed files with 3 additions and 3 deletions

View File

@ -629,9 +629,6 @@ require('lazy').setup {
dependencies = { dependencies = {
-- Snippet Engine & its associated nvim-cmp source -- 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', 'L3MON4D3/LuaSnip',
build = (function() build = (function()
-- Build Step is needed for regex support in snippets -- Build Step is needed for regex support in snippets
@ -650,6 +647,9 @@ require('lazy').setup {
-- into multiple repos for maintenance purposes. -- into multiple repos for maintenance purposes.
'hrsh7th/cmp-nvim-lsp', 'hrsh7th/cmp-nvim-lsp',
'hrsh7th/cmp-path', '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, -- If you want to add a bunch of pre-configured snippets,
-- you can use this plugin to help you. It even has snippets -- you can use this plugin to help you. It even has snippets