spacemacs/layers/+emacs/typography/packages.el
syl20bnr ebe4c60264 Revert "Defer packages by default using use-package-always-defer"
This reverts commit 29c78ce841 and all other fixes
that have been made afterwards.

The motivation is that use-package is seen by many as a replacement for
`require`. Is use-package always defer the loading of packages then is breaks
this use case, this does not respect POLA so even if it was making Spacemacs
loading faster (up to 3s faster on some startup on my machine) we just cannot
use it, it would be irresponsible. Spacemacs should be easy to use, loading
performance will come with time but it is not a priority.
2018-03-03 23:40:10 -05:00

55 lines
1.5 KiB
EmacsLisp

;;; packages.el --- typography Layer packages File for Spacemacs
;;
;; Copyright (c) 2012-2018 Sylvain Benner & Contributors
;;
;; Author: Sebastian Wiesner <swiesner@lunaryorn.com>
;; URL: https://github.com/syl20bnr/spacemacs
;;
;; This file is not part of GNU Emacs.
;;
;;; License: GPLv3
(setq typography-packages
'(
(tildify :toggle (version<= "25" emacs-version))
typo
))
(defun typography/init-typo ()
(use-package typo
:defer t
:init
(progn
(when typography-enable-typographic-editing
(add-hook 'text-mode-hook 'typo-mode))
(spacemacs|add-toggle typographic-substitutions
:mode typo-mode
:documentation "Enable typographic substitutions"
:evil-leader "tT")
(spacemacs|diminish typo-mode "" " T"))
:config (setq-default typo-language "English")))
(defun typography/init-tildify ()
(use-package tildify
:defer t
:init
(progn
(when typography-enable-typographic-editing
(add-hook 'text-mode-hook 'tildify-mode))
(spacemacs/set-leader-keys
"x~" 'tildify-region)
;; Use the symbolic non-breaking space for LaTeX
(defun typography/tildify-latex-space ()
"Set tildify space for LaTeX"
(setq-local tildify-space-string "~"))
(add-hook 'LaTeX-mode-hook 'typography/tildify-latex-space)
(spacemacs|add-toggle tildify-space
:mode tildify-mode
:documentation "Enable electric non-breaking space"
:evil-leader "t~")
(spacemacs|diminish tildify-mode " ~" " ~"))))