mirror of
https://github.com/correl/dotfiles.git
synced 2024-11-16 11:09:29 +00:00
[emacs] Add Stream library
This commit is contained in:
parent
9acd47448b
commit
1faeb1c5ef
1 changed files with 11 additions and 0 deletions
|
@ -552,6 +552,17 @@ A modern list api for Emacs. No 'cl required.
|
||||||
:ensure t
|
:ensure t
|
||||||
:config (dash-enable-font-lock))
|
:config (dash-enable-font-lock))
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
|
*** Stream
|
||||||
|
|
||||||
|
Lazy sequences in Emacs (compatible with seq.el).
|
||||||
|
|
||||||
|
#+name: programming
|
||||||
|
#+BEGIN_SRC emacs-lisp
|
||||||
|
(use-package stream
|
||||||
|
:ensure t
|
||||||
|
:if (version<= "25.1" emacs-version)
|
||||||
|
:defer t)
|
||||||
|
#+END_SRC
|
||||||
* Writing
|
* Writing
|
||||||
** Style
|
** Style
|
||||||
*** End sentences with a single space
|
*** End sentences with a single space
|
||||||
|
|
Loading…
Reference in a new issue