Skip to content

Commit 5a22bba

Browse files
author
Ali Shahid
committed
[refactor]
1 parent db368b8 commit 5a22bba

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

lua/packer_nvim.lua

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -112,9 +112,9 @@ return packer.startup {
112112
'hrsh7th/nvim-cmp',
113113
commit = commits.nvim_cmp,
114114
requires = {
115-
{"hrsh7th/cmp-nvim-lsp", commit=commits.cmp_nvim_lsp}, -- nvim-cmp source for neovim builtin LSP client
116-
{"hrsh7th/cmp-buffer", commit=commits.cmp_buffer}, -- nvim-cmp source for buffer words.
117-
{"hrsh7th/cmp-path", commit=commits.cmp_path}, -- nvim-cmp source for filesystem paths.
115+
{"hrsh7th/cmp-nvim-lsp", commit=commits.cmp_nvim_lsp}, -- nvim-cmp source for neovim builtin LSP client
116+
{"hrsh7th/cmp-buffer", commit=commits.cmp_buffer}, -- nvim-cmp source for buffer words.
117+
{"hrsh7th/cmp-path", commit=commits.cmp_path}, -- nvim-cmp source for filesystem paths.
118118
{"saadparwaiz1/cmp_luasnip", commit=commits.cmp_luasnip},-- luasnip completion source for nvim-cmp
119119
{"hrsh7th/cmp-nvim-lsp-signature-help", commit=commits.cmp_nvim_lsp_signature_help}, -- nvim-cmp source for displaying function signatures with the current parameter emphasized:
120120
{"hrsh7th/cmp-nvim-lua", ft = 'lua', commit=commits.cmp_nvim_lua}, -- nvim-cmp source for nvim lua

lua/plugins/nvim-cmp.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ cmp.setup({
7373

7474
sources = {
7575
{name = 'nvim_lsp'},
76-
{ name = 'nvim_lsp_signature_help' },
76+
{name = 'nvim_lsp_signature_help' },
7777
{name = 'nvim_lua'},
7878
{name = 'path'},
7979
{name = 'luasnip'},

0 commit comments

Comments
 (0)