mirror of
https://github.com/jimeh/.emacs.d.git
synced 2026-02-19 13:46:41 +00:00
The magit-status issues I previously had with the main melpa versions seem to have been fixed.
19 lines
308 B
EmacsLisp
19 lines
308 B
EmacsLisp
;;; siren-magit-todos.el --- jimeh's Emacs Siren: magit-todos configuration
|
|
|
|
;;; Commentary:
|
|
|
|
;; Basic configuration for magit-todos.
|
|
|
|
;;; Code:
|
|
|
|
(require 'siren-magit)
|
|
|
|
(use-package magit-todos
|
|
:after magit
|
|
|
|
:config
|
|
(magit-todos-mode))
|
|
|
|
(provide 'siren-magit-todos)
|
|
;;; siren-magit-todos.el ends here
|