1
Fork 0
satellite/dotfiles/neovim/lua/my/plugins/surround.lua
2022-12-27 20:45:43 +01:00

13 lines
197 B
Lua

local M = {
-- work with brackets, quotes, tags, etc
"tpope/vim-surround",
event = "VeryLazy",
}
function M.config()
vim.g.surround_113 = '"\r"'
vim.g.surround_97 = "'\r'"
end
return M