spacemacs/contrib/tools/fasd/packages.el

30 lines
733 B
EmacsLisp
Raw Normal View History

(setq fasd-packages
2015-01-03 16:08:11 +00:00
'(
fasd
))
2015-01-03 16:08:11 +00:00
(defun fasd-find-file-only ()
(interactive)
(fasd-find-file -1))
(defun fasd-find-directory-only ()
(interactive)
(fasd-find-file 1))
2015-01-03 16:08:11 +00:00
(defun fasd/init-fasd ()
"initializes fasd-emacs and adds a key binding to <SPC f z>"
(use-package fasd
:init
(progn
(global-fasd-mode 1)
(spacemacs/declare-prefix "fa" "fasd-find")
(evil-leader/set-key "fad" 'fasd-find-directory-only)
(evil-leader/set-key "faf" 'fasd-find-file-only)
(evil-leader/set-key "fas" 'fasd-find-file)
;; we will fall back to using the default completing-read function, which is helm once helm is loaded.
(setq fasd-completing-read-function 'nil)
)
)
)