For me it seems like a really ruff edge that default spacemacs comes without an option to give my lines a correct indentation, when they are wrapped. (Click the first link if you want to see the issue visualized.) I really need that feature, because I want to have a small org-mode window open at the side of my screen to organize my thoughts while working. (So far I have used workflowy for that, but orgmode seems much more tempting with the vimkeys and with more power). So this happens when I turn truncate-lines on.
Things I tried so far to fix this (sorry if I did things wrong, I just started using emacs):
I tried adding packages according to Make visual-line-mode more compatible with org-mode modifying the following variable:
dotspacemacs-additional-packages '(visual-line-mode adaptive-wrap)
Since it still did not work out I added the following code to my dotspacemacs/user-config
according to Correct indentation for wrapped lines:
adaptive-wrap-extra-indent 2
add-hook 'visual-line-mode-hook #'adaptive-wrap-prefix-mode
global-visual-line-mode +1
But no change came to my wrapped lines... Any help sincerely appreciated!