Make sure ivy starts.

This commit is contained in:
tastytea 2019-10-15 14:23:28 +02:00
parent 5585faa12c
commit a423f9fba1

View File

@ -1,6 +1,6 @@
;;; ui.el --- Configure user interfaces. -*- lexical-binding: t; -*-
;; Time-stamp: <2019-10-14T16:01:27+00:00>
;; Time-stamp: <2019-10-15T12:17:42+00:00>
;;; Commentary:
;; * neotree.
@ -28,6 +28,8 @@
;; Completion in many Emacs commands.
(use-package ivy
:demand t
:custom
(ivy-use-virtual-buffers t)
(ivy-count-format "[%d/%d] ")
@ -46,6 +48,9 @@
;; Extensions for ivy
(use-package counsel
:after (ivy)
:demand t
:bind
("C-x C-f" . counsel-find-file)
("M-x" . counsel-M-x)