Modernizied instatiation thingy

This commit is contained in:
CRy386i 2026-05-02 17:17:04 +02:00
parent 6f55a66333
commit daa989d24a
4 changed files with 11 additions and 11 deletions

View file

@ -3,6 +3,7 @@ return {
dependencies = {
'neovim/nvim-lspconfig',
'hrsh7th/cmp-nvim-lsp',
'petertriho/cmp-git',
'hrsh7th/cmp-buffer',
'hrsh7th/cmp-path',
'hrsh7th/cmp-cmdline',
@ -48,7 +49,7 @@ return {
-- Set configuration for specific filetype.
cmp.setup.filetype('gitcommit', {
sources = cmp.config.sources({
{ name = 'git' }, -- You can specify the `git` source if [you were installed it](https://github.com/petertriho/cmp-git).
{ name = 'git' },
}, {
{ name = 'buffer' },
})