From eac5bd7302a620ecc4e63b4f419909031e20a944 Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Thu, 6 Oct 2016 13:56:03 +0200 Subject: [PATCH] ivy: highlight whole line on matches --- core/core-ivy.el | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/core/core-ivy.el b/core/core-ivy.el index b8f5455c9..b9800bd5f 100644 --- a/core/core-ivy.el +++ b/core/core-ivy.el @@ -4,9 +4,11 @@ (use-package ivy :init (setq projectile-completion-system 'ivy - ivy-height 15 + ivy-height 14 ivy-do-completion-in-region nil - ivy-wrap t) + ivy-wrap t + ;; fontify until EOL + ivy-format-function 'ivy-format-function-line) :config (ivy-mode +1)