diff options
| author | DemonKingSwarn <rockingswarn@gmail.com> | 2026-04-20 18:33:23 +0530 |
|---|---|---|
| committer | DemonKingSwarn <rockingswarn@gmail.com> | 2026-04-20 18:33:23 +0530 |
| commit | 433e009ddc88de9c1de8bd2131a812b68704f093 (patch) | |
| tree | cd4d2da27444982bb5792864131bd12a159c750f /home/fzf.nix | |
| parent | fa9f30bbf58ca184d5d8d682df775583f3ebd5fd (diff) | |
| download | odysseus-433e009ddc88de9c1de8bd2131a812b68704f093.zip odysseus-433e009ddc88de9c1de8bd2131a812b68704f093.tar.gz | |
This is supposed to crash
an automated commit
Diffstat (limited to 'home/fzf.nix')
| -rw-r--r-- | home/fzf.nix | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/home/fzf.nix b/home/fzf.nix new file mode 100644 index 0000000..27eb86f --- /dev/null +++ b/home/fzf.nix @@ -0,0 +1,17 @@ +{ lib, ... }: + +{ + programs.fzf = { + enable = true; + colors = lib.mkForce { }; + + defaultOptions = [ + "--height 40%" + "--reverse" + "--border" + "--color=16" + ]; + + defaultCommand = "rg --files --hidden --glob=!.git/"; + }; +} |
