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
saberzero1 authored Dec 9, 2023
2 parents f51b51e + 76c5b1e commit 7395d61
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 @@ -110,6 +110,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 @@ -683,6 +684,7 @@ cmp.setup {
sources = {
{ name = 'nvim_lsp' },
{ name = 'luasnip' },
{ name = 'path' },
},
}

Expand Down

0 comments on commit 7395d61

Please sign in to comment.