Move the dependency to a more suitable place
This commit is contained in:
parent
618a30bb49
commit
1ce2db9149
6
init.lua
6
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
|
||||
|
|
Loading…
Reference in New Issue