From a423f9fba18dd082b78b1b99de44ebb8bc5e260f Mon Sep 17 00:00:00 2001 From: tastytea Date: Tue, 15 Oct 2019 14:23:28 +0200 Subject: [PATCH] Make sure ivy starts. --- init/basics/ui.el | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/init/basics/ui.el b/init/basics/ui.el index df15240..c0d4e13 100644 --- a/init/basics/ui.el +++ b/init/basics/ui.el @@ -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)