Merge 'upstream/master' feat(cmp): path completion feature

This commit is contained in:
Damjan 9000 2023-12-08 15:32:52 +01:00
commit 91499eb87d
2 changed files with 2 additions and 0 deletions

View File

@ -46,6 +46,7 @@ cmp.setup {
sources = {
{ name = 'nvim_lsp' },
{ name = 'luasnip' },
{ name = 'path' },
},
}

View File

@ -43,6 +43,7 @@ require('lazy').setup({
-- Adds LSP completion capabilities
'hrsh7th/cmp-nvim-lsp',
'hrsh7th/cmp-path',
-- Adds a number of user-friendly snippets
'rafamadriz/friendly-snippets',