refactor(shell): nixify 'fzf' config
check / lint (push) Successful in 14s

This commit is contained in:
2026-08-23 13:32:24 +02:00
parent 349d697391
commit 3c97d0a21f
2 changed files with 9 additions and 10 deletions
+9
View File
@@ -10,6 +10,15 @@
programs.fzf = {
enable = true;
enableBashIntegration = lib.mkDefault true;
defaultCommand = "rg --files";
defaultOptions = [
"--pointer=''"
"--height 10%"
];
fileWidget = {
command = "rg --files";
options = [ "--preview 'bat {} | head -500'" ];
};
};
home.packages = with pkgs; [