add custom init

This commit is contained in:
Rodney
2025-01-02 02:50:24 -05:00
parent a8f539562a
commit 82531b3c9c
6 changed files with 169 additions and 8 deletions

View File

@@ -0,0 +1,14 @@
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,
},
-- ...
},
}