spacemacs-layer: Fix linum-relative-mode

The toggle is being called after the package is loaded, but the package
is deferred based on a call to the toggle. This means that the first
time toggle is used it's called at least twice. Furthermore, `(setq
linum-format 'linum-relative)` effectively turns on the mode as it is.

Possible fix for #2161
This commit is contained in:
justbur 2015-10-15 14:15:15 -04:00 committed by syl20bnr
parent a5ac542ef1
commit 94cee58a1e

View file

@ -1462,9 +1462,7 @@ It will toggle the overlay under point or create an overlay of one character."
(evil-leader/set-key "tr" 'linum-relative-toggle)
:config
(progn
(setq linum-format 'linum-relative)
(setq linum-relative-current-symbol "")
(linum-relative-toggle))))
(setq linum-relative-current-symbol ""))))
(defun spacemacs/init-move-text ()
(use-package move-text