Files
dotfiles/nvim/m-housh/lua/user/plugin/wrapping.lua
2023-09-28 10:31:25 -04:00

21 lines
360 B
Lua

return {
"andrewferrier/wrapping.nvim",
opts = {
auto_set_mode_filetype_allowlist = {
"asciidoc",
"gitcommit",
"latex",
"markdown",
"tex",
"text"
},
},
config = function()
require("wrapping").setup({
softener = {
markdown = 1.3
},
})
end
}