Created
April 3, 2019 23:00
-
-
Save DanielG/346898d9cbc136885a5dc3e099fcf950 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(setq-default | |
visual-line-fringe-indicators | |
'(left-curly-arrow right-curly-arrow)) | |
(define-minor-mode dxld-visual-line-mode | |
(if dxld-visual-line-mode | |
(progn | |
(visual-line-mode -1) | |
(adaptive-wrap-prefix-mode -1) | |
) | |
(visual-line-mode 1) | |
(adaptive-wrap-prefix-mode 1) | |
) | |
) | |
;; you can set adaptive-wrap-extra-indent to indent the continuation line a bit | |
;; more |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment