summaryrefslogtreecommitdiffstats
path: root/lisp/init-counsel.el
blob: dc081c8a9a037e27a270580b3d6265945c3d7301 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
;;; init-counsel.el --- improve ivy integration   -*- lexical-binding:t -*-
;;; Commentary:
;;; Code:

(use-package counsel
  :ensure t
  :bind (("M-x" . counsel-M-x) ;; uses amx when present
         ("C-c i" . counsel-imenu)))

(provide 'init-counsel)

;;; init-counsel.el ends here