mirror of
https://github.com/rodneybbjr/kickstart.nvim.git
synced 2025-12-19 01:57:31 -05:00
15 lines
421 B
Lua
15 lines
421 B
Lua
return {
|
|
'hrsh7th/nvim-cmp',
|
|
dependencies = {
|
|
-- ...
|
|
-- This allows you to enable and disable the autocomplete popup:
|
|
{
|
|
'gitaarik/nvim-cmp-toggle',
|
|
config = function()
|
|
vim.api.nvim_set_keymap('n', '<leader>tc', ':NvimCmpToggle<CR>', { desc = '[T]oggle [C]ompletions', noremap = true, silent = true })
|
|
end,
|
|
},
|
|
-- ...
|
|
},
|
|
}
|