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:
parent
be02b5ead7
commit
b6063211f7
1 changed files with 2 additions and 1 deletions
|
@ -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'
|
||||
|
|
Loading…
Reference in a new issue