Files
dotfiles/nvim/after/plugin/surround.lua
2022-10-31 08:59:07 +01:00

8 lines
175 B
Lua
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
-- nvim-surround https://github.com/kylechui/nvim-surround
local status_ok, surround = pcall(require, "nvim-surround")
if not status_ok then
return
end
surround.setup()