In Notepad++ there is a linewrap option that can be set to aligned so that indented, wrapped lines align at the same left margin. See also here: How can I indent the wrapped text in Notepad++?.
Is there a setting to get the same behaviour in VIM?
In Notepad++ there is a linewrap option that can be set to aligned so that indented, wrapped lines align at the same left margin. See also here: How can I indent the wrapped text in Notepad++?.
Is there a setting to get the same behaviour in VIM?
This line indents wrapped content by 4 spaces:
set showbreak=\ \ \ \ <- there's a <Space> here
See :help 'showbreak'.
The breakindent patch in EBGreen's comment is smarter.