Skip to content

Commit

Permalink
Merge pull request #1 from nvim-lua/master
Browse files Browse the repository at this point in the history
feat(cmp): path completion feature (nvim-lua#536)
  • Loading branch information
cwstra authored Dec 9, 2023
2 parents 5637a9c + 76c5b1e commit 98190ba
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,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',
Expand Down Expand Up @@ -655,6 +656,7 @@ cmp.setup {
sources = {
{ name = 'nvim_lsp' },
{ name = 'luasnip' },
{ name = 'path' },
},
}

Expand Down

0 comments on commit 98190ba

Please sign in to comment.