Skip to content

Commit

Permalink
feat(cmp): path completion feature (nvim-lua#536)
Browse files Browse the repository at this point in the history
  • Loading branch information
ShashwatAgrawal20 authored Dec 8, 2023
1 parent 3824342 commit 76c5b1e
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 @@ -652,6 +653,7 @@ cmp.setup {
sources = {
{ name = 'nvim_lsp' },
{ name = 'luasnip' },
{ name = 'path' },
},
}

Expand Down

0 comments on commit 76c5b1e

Please sign in to comment.