I would like to disable ivy-use-virtual-buffers
in spacemacs.
However, adding (setq ivy-use-virtual-buffers nil)
in either user-init
or user-config
doesn't work. Oh no!
I believe the source of the problem is this line in the spacemacs package initialisation.
(with-eval-after-load 'recentf
(setq ivy-use-virtual-buffers t))
But I'm not sure of the correct way to trump this setting.
You can simply add your own with-eval-after-load
. In your user-config section, insert
(with-eval-after-load 'recentf
(setq ivy-use-virtual-buffers nil))