feat: Replacement of the autopairs plugin using snippets, extension of

snippets (mainly python) and cleanup of keymappings for snippets.
This commit is contained in:
2026-06-11 06:46:40 -05:00
parent c3fad7d51f
commit 4d291369e3
6 changed files with 74 additions and 46 deletions

View File

@@ -17,13 +17,11 @@ vim.schedule(function()
require('plugins.render-markdown') -- Render markdown directly in neovim
vim.pack.add({
'https://github.com/windwp/nvim-autopairs', -- Autocomplete symbol pairs when typing
'https://github.com/tpope/vim-surround', -- Change surrounding characters (doesn't need setup called)
'https://github.com/tpope/vim-fugitive', -- _The_ Git integration plugin people have been using forever
'https://github.com/habamax/vim-godot' -- Godot specific bindings and debug
})
require('nvim-autopairs').setup() -- Automatic pair completion of paranteticals, braces, quotes, etc.
require('plugins.dap') -- DAP debugging plugin
require('plugins.dap-python') -- Debug plugin settings specifically for python