1
Fork 0
satellite/dotfiles/neovim/lua/my/plugins/surround.lua

13 lines
197 B
Lua
Raw Normal View History

2023-01-10 02:38:06 +01:00
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