wrapping: add plugin for soft word wrapping

This commit is contained in:
Paul Campbell 2024-05-08 14:57:28 +01:00
parent 1b23ccfef8
commit f39b3d8204

9
lua/plugins/wrapping.lua Normal file
View file

@ -0,0 +1,9 @@
return {
"andrewferrier/wrapping.nvim",
config = function()
require("wrapping").setup {
softener = { markdown = 1.3 },
}
require("wrapping").set_mode_heuristically()
end,
}