diff --git a/Cask b/Cask index 79ffefe38..14c0b4cd0 100644 --- a/Cask +++ b/Cask @@ -64,6 +64,7 @@ (depends-on "ace-link") (depends-on "ace-window") (depends-on "avy") +(depends-on "command-log-mode") (depends-on "dumb-jump") (depends-on "editorconfig") (depends-on "eldoc-eval") diff --git a/core/core-editor.el b/core/core-editor.el index 3a6a5322e..30062d01e 100644 --- a/core/core-editor.el +++ b/core/core-editor.el @@ -146,6 +146,10 @@ :config (setq avy-all-windows nil avy-background t)) +(use-package command-log-mode + :commands (clm/command-log-buffer command-log-mode global-command-log-mode) + :config (setq command-log-mode-is-global t)) + (use-package dumb-jump :commands (dumb-jump-go dumb-jump-quick-look dumb-jump-back) :config diff --git a/private/my-commands.el b/private/my-commands.el index 56f9e3252..a203e51a2 100644 --- a/private/my-commands.el +++ b/private/my-commands.el @@ -12,6 +12,7 @@ (ex! "bc[omp]" 'doom:byte-compile) (ex! "re[load]" 'doom-reload) (ex! "re[load]au" 'doom-reload-autoloads) +(ex! "clog" 'clm/toggle-command-log-buffer) ;; Quick mapping keys to commands, allows :nmap \m !make (ex! "imap" 'doom:imap)