First commit.

This commit is contained in:
2022-01-09 21:19:46 +01:00
commit df36844dcc
107 changed files with 6565 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
;;; presentation.el --- Emacs presentation mode -*- lexical-binding: t; -*-
;;; Commentary: Presentation mode is a global minor mode to zoom characters
;;; Code: https://github.com/zonuexe/emacs-presentation-mode
(defun user--presentation-on-hook ()
"Hook executed when enabling presentation mode."
;; Disable Helm.
(helm-mode -1))
(defun user--presentation-off-hook ()
"Hook executed when disabling presentation mode."
;; Enable Helm.
(helm-mode 1))
(use-package presentation
:hook ((presentation-on-hook . user--presentation-on-hook)
(presentation-off-hook . user--presentation-off-hook))
:bind-wrap ((:key :util :presentation) . presentation-mode))
(provide 'utilities/presentation)
;;; presentation.el ends here