From 24bfbbabfab590288457d0cf465fd26584280014 Mon Sep 17 00:00:00 2001 From: Felix Tenley Date: Mon, 21 Oct 2019 09:47:21 +0200 Subject: [PATCH] configure vi mode for fish --- home/common/sh.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/home/common/sh.nix b/home/common/sh.nix index 4b96cb9..330cd90 100644 --- a/home/common/sh.nix +++ b/home/common/sh.nix @@ -8,6 +8,9 @@ in { programs.fish = { enable = true; + shellInit = '' + fish_vi_key_bindings + ''; inherit shellAliases; };