Emacs: fzf

From wikinotes
Revision as of 18:29, 4 November 2023 by Will (talk | contribs)

An emacs plugin that wraps fzf.


WARNING:

I needed to manually install the fzf plugin, issues auto-installing with use-package.
However, I am very new to emacs/use-package, so I may be doing it wrong.

Documentation

repo https://github.com/bling/fzf.el

Install

;; auto-install fzf
(use-package fzf :ensure t)

Configuration

;; bind to 'C-t' in evil-mode
(define-key evil-normal-state-map (kbd "C-t") 'fzf-find-file)