fix: Cleanup of a few bits in the neovim configs and reverting to the

autopairs plugin for pair completion as the snippets are not nuanced
enough at the moment (or possibly ever).
This commit is contained in:
2026-06-23 07:10:09 -05:00
parent 4d291369e3
commit e623cfdd40
4 changed files with 13 additions and 21 deletions

View File

@@ -17,11 +17,13 @@ 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 TODO: disabled for now, using snippets instead. remove if that feels better
'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