diff options
| author | Liam Dyer <liamcdyer@gmail.com> | 2025-04-09 17:25:57 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-04-09 17:25:57 -0400 |
| commit | afb04695977c300478b42e06c78c656358616df3 (patch) | |
| tree | 5ebe60bf9d468eb8659d86708b7d13e56c4923fe /nvim/lua | |
| parent | 3e3af5d4ba9ab23c5c094077dc5c8918308897a5 (diff) | |
| download | dots-afb04695977c300478b42e06c78c656358616df3.tar.gz | |
feat: switch nvim-cmp for blink.cmp (#1426)
Diffstat (limited to 'nvim/lua')
| -rw-r--r-- | nvim/lua/kickstart/plugins/autopairs.lua | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/nvim/lua/kickstart/plugins/autopairs.lua b/nvim/lua/kickstart/plugins/autopairs.lua index 87a7e5f..386d392 100644 --- a/nvim/lua/kickstart/plugins/autopairs.lua +++ b/nvim/lua/kickstart/plugins/autopairs.lua @@ -4,13 +4,5 @@ return { 'windwp/nvim-autopairs', event = 'InsertEnter', - -- Optional dependency - dependencies = { 'hrsh7th/nvim-cmp' }, - config = function() - require('nvim-autopairs').setup {} - -- If you want to automatically add `(` after selecting a function or method - local cmp_autopairs = require 'nvim-autopairs.completion.cmp' - local cmp = require 'cmp' - cmp.event:on('confirm_done', cmp_autopairs.on_confirm_done()) - end, + opts = {}, } |