config-misc.el (476B)
1 ;;; config-misc.el --- -*- lexical-binding: t; -*- 2 ;;; Commentary: 3 ;;; Miscellaneous modes configuration 4 ;;; Code: 5 6 (use-package helpful 7 :unless noninteractive 8 :bind (("C-h f" . helpful-callable) 9 ("C-h F" . helpful-function) 10 ("C-h M" . helpful-macro) 11 ("C-c h S" . helpful-at-point) 12 ("C-h k" . helpful-key) 13 ("C-h v" . helpful-variable) 14 ("C-h C" . helpful-command))) 15 16 (provide 'config-misc) 17 ;;; config-misc.el ends here