mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-01 12:17:25 -05:00
11 lines
337 B
EmacsLisp
11 lines
337 B
EmacsLisp
;;; editor/god/config.el -*- lexical-binding: t; -*-
|
|
|
|
(use-package! god-mode
|
|
:hook (doom-after-modules-config . god-mode-all)
|
|
:config
|
|
(add-hook 'post-command-hook #'+god--configure-cursor-and-modeline-h)
|
|
(add-hook 'overwrite-mode-hook #'+god--toggle-on-overwrite-h)
|
|
|
|
(after! which-key
|
|
(which-key-enable-god-mode-support)))
|