Wordwrap Settings #265
-
Hi, can the plugin help me setting a word wrap only for md files? How could I achive this? Thanks in advance! |
Beta Was this translation helpful? Give feedback.
Answered by
MeanderingProgrammer
Dec 20, 2024
Replies: 1 comment 1 reply
-
Yes, you can use this plugin to modify whatever window options you want. This would work similar to adding an ftplugin Add the following to your config: require('render-markdown').setup({
win_options = {
wrap = { default = false, rendered = false },
},
}) |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
dehnes
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Yes, you can use this plugin to modify whatever window options you want. This would work similar to adding an ftplugin
:h ftplugin
.Add the following to your config: