Emacs: fzf: Difference between revisions

From wikinotes
(Created page with "An emacs plugin that wraps fzf. = Install = <blockquote> <syntaxhighlight lang="lisp"> ;; auto-install fzf (use-package fzf :ensure t) </syntaxhighlight> </blockquote><!-- Install --> = Configuration = <blockquote> <syntaxhighlight lang="elisp"> ;; bind to 'C-t' in evil-mode (define-key evil-normal-state-map (kbd "C-t") 'fzf-find-file) </syntaxhighlight> </blockquote><!-- Configuration -->")
 
Line 3: Line 3:
= Install =
= Install =
<blockquote>
<blockquote>
<syntaxhighlight lang="lisp">
<syntaxhighlight lang="elisp">
;; auto-install fzf
;; auto-install fzf
(use-package fzf :ensure t)
(use-package fzf :ensure t)

Revision as of 01:28, 25 June 2023

An emacs plugin that wraps fzf.

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)