(use-package smartparens-config :ensure smartparens)

<2017-07-21 Fri>

Here is the correct way to load it:

(use-package smartparens
  :ensure t
  :config
  (setq sp-show-pair-from-inside nil)
  (require 'smartparens-config)
  :diminish smartparens-mode)

3 thoughts on “(use-package smartparens-config :ensure smartparens)”

  1. I’m not sure that you solution will require smartparens if smartparens-config doesn’t.
    If the only issue is the single-quote, maybe you can use
    (use-package smartparens
    :ensure t
    :config (use-package smartparens-config))

Leave a Reply

Your email address will not be published. Required fields are marked *