diff options
-rw-r--r-- | init.el | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/init.el b/init.el index 1d1ca39..3c0d2e7 100644 --- a/init.el +++ b/init.el | |||
@@ -1006,7 +1006,11 @@ specific to most general, they are these: | |||
1006 | tab-width 4 | 1006 | tab-width 4 |
1007 | backward-delete-char-untabify-method 'hungry) | 1007 | backward-delete-char-untabify-method 'hungry) |
1008 | 1008 | ||
1009 | (:global "M-SPC" #'cycle-spacing)) | 1009 | (:global "M-SPC" #'cycle-spacing) |
1010 | ;; http://ruzkuku.com/emacs.d.html#orgc62eb58 | ||
1011 | (:advise cycle-spacing :around | ||
1012 | (defun cycle-spacing@newlines-by-default (old arg &rest _) | ||
1013 | (funcall old (if (numberp arg) (- arg) arg))))) | ||
1010 | 1014 | ||
1011 | (setup windmove | 1015 | (setup windmove |
1012 | (:option windmove-wrap-around t) | 1016 | (:option windmove-wrap-around t) |