vuls: init at 0.27.0
[NixPkgs.git] / doc / packages / shell-helpers.section.md
blobe7c2b0abebfcaa94958e33402d3a27e6f58df1d1
1 # Interactive shell helpers {#sec-shell-helpers}
3 Some packages provide the shell integration to be more useful. But unlike other systems, nix doesn't have a standard `share` directory location. This is why a bunch `PACKAGE-share` scripts are shipped that print the location of the corresponding shared folder. Current list of such packages is as following:
5 - `fzf` : `fzf-share`
7 E.g. `fzf` can then be used in the `.bashrc` like this:
9 ```bash
10 source "$(fzf-share)/completion.bash"
11 source "$(fzf-share)/key-bindings.bash"
12 ```