Emacs: fzf: Difference between revisions

From wikinotes
No edit summary
Tag: Reverted
No edit summary
Tag: Manual revert
 
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 =

Latest revision as of 18:36, 4 November 2023

An emacs plugin that wraps fzf.

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)