Files
.emacs.d/modules/editor/siren-smex.el
Jim Myhrberg 2e6dd89003 Store all temporary stuff in a specific cache folder
Instead of using effectively TMPDIR on the machine, let's use a `cache`
folder in the root of the .emacs.d directory.
2019-03-25 17:17:32 +00:00

22 lines
428 B
EmacsLisp

;;; siren-smex.el --- jimeh's Emacs Siren: smex.
;;; Commentary:
;; Replace M-x with the more powerful smex.
;;; Code:
(use-package smex
:bind
("C-x C-m" . smex)
("C-c C-m" . smex)
("M-X" . smex-major-mode-commands)
("C-c C-c M-x" . execute-extended-command)
:config
(setq smex-save-file (expand-file-name "smex-items" siren-cache-dir))
(smex-initialize))
(provide 'siren-smex)
;;; siren-smex.el ends here