You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
593 B
Lua
18 lines
593 B
Lua
-- https://github.com/tpope/vim-surround
|
|
-- surround.vim: Delete/change/add parentheses/quotes/XML-tags/much more with ease
|
|
local M = { "tpope/vim-surround" }
|
|
|
|
M.tag = "v2.2"
|
|
M.dependencies = {
|
|
-- https://github.com/tpope/vim-sleuth
|
|
-- sleuth.vim: Heuristically set buffer options
|
|
{ "tpope/vim-sleuth", tag = "v2.0" },
|
|
|
|
-- https://github.com/numToStr/Comment.nvim
|
|
-- 🧠 💪 // Smart and powerful comment plugin for neovim.
|
|
-- Supports treesitter, dot repeat, left-right/up-down motions, hooks, and more
|
|
{ "numToStr/Comment.nvim", opts = {}, lazy = false },
|
|
}
|
|
|
|
return M
|