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)
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)
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))
My load was all wrong. I just fixed it.
SKYWALKER:
Gotcha. I did’t know that you can utilize use-package to install one package (smartparens) and then require another (smartparens-config). Like you said, the latter loads the former https://github.com/Fuco1/smartparens/blob/master/smartparens-config.el#L46. smartparens-config just does what most of us are configuring by-hand right now