mirror of
https://github.com/jimeh/.emacs.d.git
synced 2026-02-19 13:46:41 +00:00
28 lines
457 B
EmacsLisp
28 lines
457 B
EmacsLisp
;;; siren-amx.el --- jimeh's Emacs Siren: amx configuration.
|
|
|
|
;;; Commentary:
|
|
|
|
;; Replace M-x with the more powerful amx.
|
|
|
|
;;; Code:
|
|
|
|
(require 'siren-ido)
|
|
|
|
(use-package amx
|
|
:general
|
|
("M-x" 'amx)
|
|
("C-x C-m" 'amx)
|
|
|
|
:custom
|
|
(amx-backend 'ido)
|
|
(amx-histroy-lenth 15)
|
|
(amx-prompt-string "M-x ")
|
|
(amx-save-file (siren-cache-dir "amx-items"))
|
|
(amx-show-key-bindings t)
|
|
|
|
:config
|
|
(amx-mode +1))
|
|
|
|
(provide 'siren-amx)
|
|
;;; siren-amx.el ends here
|