diff options
author | Shashwat Agrawal <72117025+ShashwatAgrawal20@users.noreply.github.com> | 2023-12-08 18:44:06 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-08 08:14:06 -0500 |
commit | 76c5b1ec57f40d17ac787feb018817a802e24bb6 (patch) | |
tree | c6a104b88d72e0c10a0fe7fe8a165e71dc873bab | |
parent | 3824342d107850dfe5b179d0a39e0d8fcd54411d (diff) |
feat(cmp): path completion feature (#536)
-rw-r--r-- | init.lua | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -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', @@ -652,6 +653,7 @@ cmp.setup { sources = { { name = 'nvim_lsp' }, { name = 'luasnip' }, + { name = 'path' }, }, } |