From 18762c553b081dd22021d1b2031d061c4a3043d2 Mon Sep 17 00:00:00 2001 From: Adam Goldsmith Date: Sun, 12 Apr 2020 15:19:29 -0400 Subject: [PATCH] Demote show-marks to optional --- .emacs.d/init.el | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.emacs.d/init.el b/.emacs.d/init.el index 0dd750b..acc9665 100644 --- a/.emacs.d/init.el +++ b/.emacs.d/init.el @@ -481,12 +481,6 @@ :config :hook prog-mode) -(use-package show-marks :ensure - :config - :bind ("C-S-" . backward-mark) - :bind ("C-S-" . forward-mark) - :bind ("C-S-" . 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-" . backward-mark) + :bind ("C-S-" . forward-mark) + :bind ("C-S-" . show-marks)) + ;;; Local Variables (add-to-list 'safe-local-eval-forms '(outline-hide-body)) ;; Local Variables: