Files
.emacs.d/modules/editor/siren-amx.el
Jim Myhrberg bdeda97fb8 chore(editor): Switch amx from ivy to ido completion
Ivy is very nicer and fancy, but it doesn't sort exact matches highest
when using fuzzy matching, ido does.
2020-03-06 18:37:01 +00:00

26 lines
451 B
EmacsLisp

;;; siren-amx.el --- jimeh's Emacs Siren: amx configuration.
;;; Commentary:
;; Replace M-x with the more powerful amx.
;;; Code:
(use-package amx
:bind
("M-x" . amx)
("C-x C-m" . amx)
:custom
(amx-backend 'ido)
(amx-histroy-lenth 15)
(amx-prompt-string "M-x ")
(amx-save-file (expand-file-name "amx-items" siren-cache-dir))
(amx-show-key-bindings t)
:config
(amx-mode +1))
(provide 'siren-amx)
;;; siren-amx.el ends here