From 4210febfd5f816265ba8d0965f252e3e9a35d7f5 Mon Sep 17 00:00:00 2001 From: Tim McCarthy Date: Thu, 24 Jun 2021 15:41:19 -0700 Subject: [PATCH] Xonsh use FZF for history search --- xonsh/rc.xsh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/xonsh/rc.xsh b/xonsh/rc.xsh index 18caddc..4d13668 100644 --- a/xonsh/rc.xsh +++ b/xonsh/rc.xsh @@ -3,8 +3,11 @@ from pathlib import Path from typing import List from xonsh.platform import ON_DARWIN, ON_LINUX +$fzf_history_binding = "c-r" + _xontribs = [ "vox", + "fzf-widgets", "powerline_binding", ]