mirror of
https://github.com/jimeh/.emacs.d.git
synced 2026-02-19 13:46:41 +00:00
17 lines
332 B
EmacsLisp
17 lines
332 B
EmacsLisp
;;; siren-yank-indent.el --- jimeh's Emacs Siren: yank-indent configuration.
|
|
|
|
;;; Commentary:
|
|
|
|
;; Basic configuration for yank-indent.
|
|
|
|
;;; Code:
|
|
|
|
(use-package yank-indent
|
|
:straight (:host github :repo "jimeh/yank-indent")
|
|
|
|
:config
|
|
(global-yank-indent-mode t))
|
|
|
|
(provide 'siren-yank-indent)
|
|
;;; siren-yank-indent.el ends here
|