neovim/lua/plugins/coding.lua
Devin Haska a68ad5ac1d
feat: config refresh
The goal of this commit was to break my config into smaller, logical
chunks. I was having a hard time remembering which file contained which
plugin config.

I also took the time to clean out some plugins I added but never used,
and add an old favourite (tpope/vim-surround).
2024-09-15 20:06:33 -07:00

28 lines
445 B
Lua

return {
{
"tpope/vim-surround",
},
{
"echasnovski/mini.pairs",
version = false,
opts = {
mappings = {
["`"] = { action = "closeopen", pair = "``", neigh_pattern = "[^\\`].", register = { cr = false } },
},
},
},
{
"folke/ts-comments.nvim",
event = "VeryLazy",
opts = {
lang = {
pug = "// %s",
},
},
},
{
"folke/todo-comments.nvim",
dependencies = { "nvim-lua/plenary.nvim" },
opts = {},
},
}