1
0
Fork 0

nvim: add doxygen and orgmode completion

This commit is contained in:
tastytea 2022-09-09 06:50:11 +02:00
parent 71f3cf6e45
commit d8a4b93e80
Signed by: tastytea
SSH Key Fingerprint: SHA256:FBkvrOlhq5use1XEttyUGT4bUTDVA1ar9SgIc9P03cM
2 changed files with 11 additions and 2 deletions

View File

@ -46,9 +46,11 @@ if cmp and luasnip then
{ name = 'nvim_lua' },
{ name = 'dictionary' },
{ name = 'zsh' },
{ name = 'doxygen' },
{ name = 'orgmode' },
}, {
{ name = 'buffer' },
{ name = 'spell' }
{ name = 'spell' },
})
})

View File

@ -64,7 +64,14 @@ require('packer').startup({ function(use)
'https://github.com/uga-rosa/cmp-dictionary',
'https://github.com/f3fora/cmp-spell',
'https://github.com/hrsh7th/cmp-nvim-lsp-document-symbol',
'https://github.com/tamago324/cmp-zsh'
'https://github.com/tamago324/cmp-zsh',
{
'https://github.com/paopaol/cmp-doxygen',
requires = {
'https://github.com/nvim-treesitter/nvim-treesitter',
'https://github.com/nvim-treesitter/nvim-treesitter-textobjects'
}
}
}
}