diff --git a/hosts/nixos/home.nix b/hosts/nixos/home.nix index 830f844..8a05262 100644 --- a/hosts/nixos/home.nix +++ b/hosts/nixos/home.nix @@ -101,6 +101,7 @@ programs.fzf = { enable = true; enableZshIntegration = true; + defaultCommand = "fd --type f"; }; # Install starship @@ -155,6 +156,11 @@ ignores = ["~/Documents/Share" ".git"]; }; + # Install rg + programs.ripgrep = { + enable = true; + }; + # Install btop programs.btop.enable = true; diff --git a/modules/home-manager/zsh.nix b/modules/home-manager/zsh.nix index bea94b5..ebc48fb 100644 --- a/modules/home-manager/zsh.nix +++ b/modules/home-manager/zsh.nix @@ -31,6 +31,8 @@ nnn = ''LC_COLLATE="C" nnn -xeaiH''; # Buku powerup b = "buku -p"; + # fzf shenanigans + vif = ''nvim $(fzf --preview="bat --color=always {}")''; }; initExtra = ''