This may really be a basic emacs lisp question, but I'm just starting to learn some Clojure -- tiptoeing along the first steps of the newbie's path -- and don't know any elisp yet.
How can one set Word Wrap mode to indent to the first character of the previous line?
Word-wrap visual line mode mode is good, but the indents are lost on wrap, making it harder to scan code by eye.
Ideally I'd want to indent up to a point, say, 30 characters max for example, to avoid overdoing it...
I'm guessing that to get this programmatically I'd need a conditional elisp statement in my emacs file.
It seems many people would have done this. Or is there a reason not to? How can it be implemented?
Thanks.