dotfiles/nvim/lua/plugins/autopairs.lua
Joshua Finch dab3447bad feat: Adding new additions of:
- autopairs (trying again and kind of liking it)
- render-markdown to render markdown in editor
- twilight for dimming other lines
- nvim-biscuits

Changes to the zshrc settings to add location, color settings
environment variables, some keybindings, universal aliases for
coloration, etc.

Adding a loader.enable to the start of init.lua for faster load times
(need to benchmark this but it feels faster).
2025-07-20 14:53:21 -05:00

7 lines
115 B
Lua

return {
'windwp/nvim-autopairs',
config = function ()
require('nvim-autopairs').setup()
end
}