mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-01 12:17:25 -05:00
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:
@ -337,6 +337,11 @@ successfully sets indent_style/indent_size.")
|
|||||||
(smartparens-global-mode +1))
|
(smartparens-global-mode +1))
|
||||||
|
|
||||||
|
|
||||||
|
(def-package! so-long
|
||||||
|
:after-call (after-find-file)
|
||||||
|
:config (global-so-long-mode +1))
|
||||||
|
|
||||||
|
|
||||||
(def-package! undo-tree
|
(def-package! undo-tree
|
||||||
;; Branching & persistent undo
|
;; Branching & persistent undo
|
||||||
:after-call (doom-switch-buffer-hook after-find-file)
|
:after-call (doom-switch-buffer-hook after-find-file)
|
||||||
|
@ -23,6 +23,9 @@
|
|||||||
(package! ns-auto-titlebar :ignore (not IS-MAC))
|
(package! ns-auto-titlebar :ignore (not IS-MAC))
|
||||||
(package! pcre2el)
|
(package! pcre2el)
|
||||||
(package! smartparens)
|
(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! osx-clipboard :ignore (not IS-MAC))
|
||||||
(package! undo-tree)
|
(package! undo-tree)
|
||||||
(package! ws-butler)
|
(package! ws-butler)
|
||||||
|
Reference in New Issue
Block a user