8000 GitHub - axgfn/on.el: Hooks for faster Emacs startup – GitHub mirror
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

axgfn/on.el

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
< 85CA /div>
 
 
 
 
 
 

Repository files navigation

on.el – utility hooks and functions from Doom Emacs

This package exposes a number of utility hooks and functions ported from Doom Emacs. The hooks make it easier to speed up Emacs startup by providing finer-grained control of the timing at which packages are loaded.

For example, use-package users can delay loading the which-key package until the first key is pressed:

(use-package which-key
  :hook (on-first-input . which-key-mode))

The list of hooks provided by on.el is as follows:

  • on-first-input-hook: run before the first user input.
  • on-first-file-hook: run before the first interactively opened file.
  • on-first-buffer-hook: run before the first interactively opened buffer.
  • on-init-ui-hook: run when the UI has been initialized. This one is useful for setting fonts and enabling custom themes without having to worry about whether Emacs is running as a daemon or not.

About

Hooks for faster Emacs startup – GitHub mirror

Topics

Resources

License

Stars

Watchers

Forks

0