summaryrefslogtreecommitdiffstats
path: root/lisp/init-amx.el
blob: 0e1f26560b2a12f2db8a5a84721f2355b45be792 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
;;; init-amx.el --- configure a better M-x  -*- lexical-binding:t -*-
;;; Commentary:
;;; Code:

(use-package amx
  :ensure t
  :after ivy
  :config
  (amx-mode 1))

(provide 'init-amx)

;;; init-amx.el ends here