fzf sheganingans.

This commit is contained in:
CronyAkatsuki 2025-02-21 00:31:26 +01:00
parent c18fc217e8
commit e96a3f2988
2 changed files with 8 additions and 0 deletions

View File

@ -101,6 +101,7 @@
programs.fzf = { programs.fzf = {
enable = true; enable = true;
enableZshIntegration = true; enableZshIntegration = true;
defaultCommand = "fd --type f";
}; };
# Install starship # Install starship
@ -155,6 +156,11 @@
ignores = ["~/Documents/Share" ".git"]; ignores = ["~/Documents/Share" ".git"];
}; };
# Install rg
programs.ripgrep = {
enable = true;
};
# Install btop # Install btop
programs.btop.enable = true; programs.btop.enable = true;

View File

@ -31,6 +31,8 @@
nnn = ''LC_COLLATE="C" nnn -xeaiH''; nnn = ''LC_COLLATE="C" nnn -xeaiH'';
# Buku powerup # Buku powerup
b = "buku -p"; b = "buku -p";
# fzf shenanigans
vif = ''nvim $(fzf --preview="bat --color=always {}")'';
}; };
initExtra = '' initExtra = ''