Use `counsel-find-file` when spacemacs-ivy is used

Simple keybinding change. Keep `helm-find-files` otherwise.
This commit is contained in:
sooheon 2016-01-27 12:53:58 +09:00 committed by syl20bnr
parent 407f98a1c8
commit 4dcdf2364f
1 changed files with 3 additions and 1 deletions

View File

@ -54,7 +54,9 @@
(kbd "RET") (if vinegar-reuse-dired-buffer
'dired-find-alternate-file
'dired-find-file)
"f" 'helm-find-files
"f" (if (configuration-layer/layer-usedp 'spacemacs-ivy)
'counsel-find-file
'helm-find-files)
"J" 'dired-goto-file
(kbd "C-f") 'find-name-dired
"H" 'diredp-dired-recent-dirs