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; -*- ;;; 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: ;;; Commentary:
;; * neotree. ;; * neotree.
@ -28,6 +28,8 @@
;; Completion in many Emacs commands. ;; Completion in many Emacs commands.
(use-package ivy (use-package ivy
:demand t
:custom :custom
(ivy-use-virtual-buffers t) (ivy-use-virtual-buffers t)
(ivy-count-format "[%d/%d] ") (ivy-count-format "[%d/%d] ")
@ -46,6 +48,9 @@
;; Extensions for ivy ;; Extensions for ivy
(use-package counsel (use-package counsel
:after (ivy)
:demand t
:bind :bind
("C-x C-f" . counsel-find-file) ("C-x C-f" . counsel-find-file)
("M-x" . counsel-M-x) ("M-x" . counsel-M-x)