new plugins, from coq to cmp, fixes, xdebug, install python3 fixes
This commit is contained in:
15
lua/plugins/nvim-cmp-git.lua
Normal file
15
lua/plugins/nvim-cmp-git.lua
Normal file
@@ -0,0 +1,15 @@
|
||||
-- Git source for nvim-cmp
|
||||
return {
|
||||
'petertriho/cmp-git',
|
||||
enabled = true,
|
||||
lazy = true,
|
||||
dependencies = {
|
||||
-- A completion plugin for neovim coded in Lua.
|
||||
{ 'hrsh7th/nvim-cmp' }
|
||||
},
|
||||
opts = {
|
||||
},
|
||||
init = function()
|
||||
table.insert(require('cmp').get_config().sources, { name = 'git' })
|
||||
end
|
||||
}
|
||||
Reference in New Issue
Block a user