diff options
| author | Nanderty <psopka@sopka.ch> | 2023-03-26 16:04:40 +0200 |
|---|---|---|
| committer | Nanderty <psopka@sopka.ch> | 2023-03-26 16:04:40 +0200 |
| commit | ef44657937474145403c2b441b862035914d6a44 (patch) | |
| tree | cefeca8f30c2b8b16dd7b7ed877310a0f181fba0 /lua/plugins/cmp.lua | |
| parent | 063c2d97218cdabe0634054a8038cd6b5c9a9a12 (diff) | |
| download | neovim-config-ef44657937474145403c2b441b862035914d6a44.tar.gz neovim-config-ef44657937474145403c2b441b862035914d6a44.tar.bz2 neovim-config-ef44657937474145403c2b441b862035914d6a44.zip | |
Snippets
Diffstat (limited to 'lua/plugins/cmp.lua')
| -rw-r--r-- | lua/plugins/cmp.lua | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lua/plugins/cmp.lua b/lua/plugins/cmp.lua index 76e8101..3f7b6ea 100644 --- a/lua/plugins/cmp.lua +++ b/lua/plugins/cmp.lua @@ -14,7 +14,7 @@ return { }, config = function(_, opts) require('luasnip').config.set_config(opts) - require('luasnip.loaders.from_lua').lazy_load({ paths = vim.fn.stdpath('config') .. '/Snippets/' }) + require('luasnip.loaders.from_lua').lazy_load({ paths = vim.fn.stdpath('config') .. '/lua/Snippets/' }) end }, { @@ -23,7 +23,7 @@ return { dependencies = { 'hrsh7th/cmp-nvim-lsp', 'hrsh7th/cmp-buffer', - 'hrsh7th/cmp-path', + 'FelipeLema/cmp-async-path', 'hrsh7th/cmp-calc', 'saadparwaiz1/cmp_luasnip', 'L3MON4D3/LuaSnip', @@ -55,7 +55,7 @@ return { { name = 'nvim_lsp' }, { name = 'luasnip' }, { name = 'buffer' }, - { name = 'path' }, + { name = 'async_path' }, { name = 'calc' }, }), formatting = { |
