Add so-long package

This package kicks in if you open a file whose lines are too long.

It is built into Emacs 27+, but I've backported it for earlier users.
This commit is contained in:
Henrik Lissner 2019-07-21 04:12:01 +02:00
parent fdcb259bcd
commit 2df56b93a9
No known key found for this signature in database
GPG key ID: 5F6C0EA160557395
2 changed files with 8 additions and 0 deletions

View file

@ -337,6 +337,11 @@ successfully sets indent_style/indent_size.")
(smartparens-global-mode +1))
(def-package! so-long
:after-call (after-find-file)
:config (global-so-long-mode +1))
(def-package! undo-tree
;; Branching & persistent undo
:after-call (doom-switch-buffer-hook after-find-file)

View file

@ -23,6 +23,9 @@
(package! ns-auto-titlebar :ignore (not IS-MAC))
(package! pcre2el)
(package! smartparens)
(package! so-long
:built-in 'prefer
:recipe (:repo "https://git.savannah.gnu.org/git/so-long.git"))
(package! osx-clipboard :ignore (not IS-MAC))
(package! undo-tree)
(package! ws-butler)