diff --git a/core/core-editor.el b/core/core-editor.el index b89a68f3d..929e02cba 100644 --- a/core/core-editor.el +++ b/core/core-editor.el @@ -168,8 +168,8 @@ extension, try to guess one." ;; Auto-close delimiters and blocks as you type (def-package! smartparens + :hook (doom-init . smartparens-global-mode) :config - (add-hook 'doom-init-hook #'smartparens-global-mode) (require 'smartparens-config) (setq sp-autowrap-region nil ; let evil-surround handle this diff --git a/core/core-packages.el b/core/core-packages.el index 1830d6eb2..c40ef27b5 100644 --- a/core/core-packages.el +++ b/core/core-packages.el @@ -704,7 +704,7 @@ compiled packages.'" if (file-exists-p path) collect path and do (delete-file path) - and do (message "Deleted %s" (file-relative-name path))) + and do (message "✓ Deleted %s" (file-relative-name path))) (message "Everything is clean")))) diff --git a/modules/feature/evil/config.el b/modules/feature/evil/config.el index 4d24b856e..bf0efc808 100644 --- a/modules/feature/evil/config.el +++ b/modules/feature/evil/config.el @@ -388,8 +388,8 @@ the new algorithm is confusing, like in python or ruby." ;; ;; mc doesn't play well with evil, this attempts to assuage some of its problems -;; so that certain plugins (which I have no control over) can still use it in -;; relative safety. +;; so that any plugins that depend on multiple-cursors (which I have no control +;; over) can still use it in relative safety. (after! multiple-cursors-core (map! :map mc/keymap :ne "" #'mc/keyboard-quit) diff --git a/modules/feature/jump/config.el b/modules/feature/jump/config.el index 1c2cc0e56..f4e005446 100644 --- a/modules/feature/jump/config.el +++ b/modules/feature/jump/config.el @@ -29,7 +29,7 @@ "An alist that maps online resources to their search url or a function that produces an url. Used by `+jump/online'.") -(defconst +jump-search-browser-fn #'browse-url +(defvar +jump-search-browser-fn #'browse-url "Function to use to open search urls.") (defvar +jump-function-alist nil