nvim: plugins: Fix snippets not showing up in completion

For some reason without adding the snippets to the runtime path,
snippets do now show up in completion.

Found the solution here though the issue is on Ultisnips
https://github.com/hrsh7th/nvim-cmp/issues/241
This commit is contained in:
Sanchayan Maity 2021-09-27 16:40:55 +05:30
parent be02b5ead7
commit b6063211f7
1 changed files with 2 additions and 1 deletions

View File

@ -122,9 +122,10 @@ local init = function ()
'kshenoy/vim-signature',
}
-- Snippets
use 'hrsh7th/vim-vsnip'
use {
'rafamadriz/friendly-snippets',
'hrsh7th/vim-vsnip'
rtp = '.'
}
-- GDB support
use 'sakhnik/nvim-gdb'