Demote show-marks to optional

This commit is contained in:
Adam Goldsmith 2020-04-12 15:19:29 -04:00
parent 65c9e10f7f
commit 18762c553b
1 changed files with 6 additions and 6 deletions

View File

@ -481,12 +481,6 @@
:config
:hook prog-mode)
(use-package show-marks :ensure
:config
:bind ("C-S-<left>" . backward-mark)
:bind ("C-S-<right>" . forward-mark)
:bind ("C-S-<down>" . show-marks))
(use-package immortal-scratch :ensure :demand
:config
(setq immortal-scratch-switch-to-respawned-scratch t)
@ -939,6 +933,12 @@
(concat "prettier --find-config-path " (buffer-file-name)))))
(prettier-js-mode t))))
(use-package show-marks
:config
:bind ("C-S-<left>" . backward-mark)
:bind ("C-S-<right>" . forward-mark)
:bind ("C-S-<down>" . show-marks))
;;; Local Variables
(add-to-list 'safe-local-eval-forms '(outline-hide-body))
;; Local Variables: