mirror of
https://github.com/lliding/ld-emacs.git
synced 2025-10-13 05:23:05 +00:00
18 lines
369 B
EmacsLisp
18 lines
369 B
EmacsLisp
;; -*- coding: utf-8; -*-
|
|
;;; Require:
|
|
(require 'which-key)
|
|
|
|
;;; Code:
|
|
(setq which-key-show-early-on-C-h t)
|
|
(setq which-key-idle-delay 10000)
|
|
(setq which-key-idle-secondary-delay 0.05)
|
|
(setq which-key-max-description-length nil) ;; show entire key name
|
|
|
|
(which-key-mode)
|
|
|
|
(which-key-setup-side-window-bottom)
|
|
|
|
(provide 'init-which-key)
|
|
|
|
;;; init-which-key.el ends here
|