diff options
author | Ben Sima <ben@bsima.me> | 2020-11-14 11:07:43 -0500 |
---|---|---|
committer | Ben Sima <ben@bsima.me> | 2020-11-14 11:11:28 -0500 |
commit | 71345e5723f232cf148b2c4f43edfd0b1a6c3689 (patch) | |
tree | b8eabceb7c31264ad8f81b4a1458a3434463eb0e /lib | |
parent | 4f6159028494674ad807b5367d8fdb96c0408821 (diff) |
Enable fzf
Diffstat (limited to 'lib')
-rw-r--r-- | lib/common.nix | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/common.nix b/lib/common.nix index 2fe1787..bdedc44 100644 --- a/lib/common.nix +++ b/lib/common.nix @@ -54,6 +54,12 @@ in path = "${homedir}/cfg/home-manager"; }; + fzf = { + enable = true; + enableBashIntegration = true; + defaultCommand = "rg --files"; + }; + tmux = { enable = true; extraConfig = builtins.readFile ./tmux; |