mirror of
https://codeberg.org/scip/dot-emacs.git
synced 2025-12-16 20:10:58 +01:00
13 lines
293 B
EmacsLisp
13 lines
293 B
EmacsLisp
;; *** Novel Mode - Screen Reader
|
|
|
|
;; my own emacs screen reader, very handy to read docs on the road.
|
|
|
|
(use-package novel-mode
|
|
:ensure nil
|
|
:config
|
|
(global-set-key (kbd "C-c C-n") 'novel-mode))
|
|
|
|
|
|
(provide 'init-novel)
|
|
;;; init-novel.el ends here
|