Emacs: fzf: Difference between revisions

From wikinotes
No edit summary
No edit summary
Tag: Reverted
Line 1: Line 1:
An emacs plugin that wraps [[fzf]].
An emacs plugin that wraps [[fzf]].
{{ WARNING |
I needed to manually install the fzf plugin, issues auto-installing with <code>use-package</code>.<br>
However, I am very new to emacs/use-package, so I may be doing it wrong.
}}


= Documentation =
= Documentation =

Revision as of 18:29, 4 November 2023

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)