Skip to content

Commit

Permalink
enable fzf program and remove fzf package
Browse files Browse the repository at this point in the history
  • Loading branch information
Tanvir1337x committed Dec 1, 2024
1 parent 1f6bd7e commit 34811d6
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
2 changes: 1 addition & 1 deletion users/user/home-manager/packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,6 @@ in {
argc # CLI: Command-line options, arguments, and sub-commands parser for Bash.
grc # CLI: Generic text colorizer.
cod # Daemon: Generates Bash/Fish/Zsh autocompletions based on `--help` output.
fzf # CLI: Command-line fuzzy finder written in Go.
/*
zoxide # CLI: Fast 'cd' command that learns your habits.
broot # CLI: Interactive tree view, fuzzy search, and customizable commands.
Expand All @@ -188,6 +187,7 @@ in {
atuin # CLI: Shell history replacement with context recording and optional sync.
glow # CLI: Renders Markdown on the CLI with styling.
tealdeer # CLI: Very fast implementation of tldr in Rust.
fzf # CLI: Command-line fuzzy finder written in Go.
cheat # CLI: Create and view interactive cheatsheets.
imgcat # CLI: Displays images in the terminal.
noti # CLI: Monitors a process and triggers a notification.
Expand Down
13 changes: 13 additions & 0 deletions users/user/home-manager/programs.nix
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,19 @@ in {
enableFishIntegration = true;
};

fzf = {
enable = true;

tmux = {
enableShellIntegration = true;
shellIntegrationOptions = ["-d 60%"];
};

enableBashIntegration = true;
enableZshIntegration = true;
enableFishIntegration = true;
};

fd = {
enable = true;
hidden = true;
Expand Down

0 comments on commit 34811d6

Please sign in to comment.