treewide: format with latest stable formatter
Signed-off-by: Austin Horstman <khaneliman12@gmail.com>
This commit is contained in:
parent
56ee5d0670
commit
b4752b0eda
56 changed files with 816 additions and 832 deletions
|
|
@ -22,33 +22,30 @@ let
|
|||
# See: https://github.com/nix-community/home-manager/issues/6663
|
||||
# and https://github.com/bnprks/mcfly-fzf/issues/10
|
||||
|
||||
bashIntegration =
|
||||
''
|
||||
eval "$(${getExe cfg.package} init bash)"
|
||||
''
|
||||
+ optionalString cfg.fzf.enable ''
|
||||
if [[ $- =~ i ]]; then
|
||||
eval "$(${getExe cfg.mcflyFzfPackage} init bash)"
|
||||
fi
|
||||
'';
|
||||
bashIntegration = ''
|
||||
eval "$(${getExe cfg.package} init bash)"
|
||||
''
|
||||
+ optionalString cfg.fzf.enable ''
|
||||
if [[ $- =~ i ]]; then
|
||||
eval "$(${getExe cfg.mcflyFzfPackage} init bash)"
|
||||
fi
|
||||
'';
|
||||
|
||||
fishIntegration =
|
||||
''
|
||||
${getExe cfg.package} init fish | source
|
||||
''
|
||||
+ optionalString cfg.fzf.enable ''
|
||||
${getExe cfg.mcflyFzfPackage} init fish | source
|
||||
'';
|
||||
fishIntegration = ''
|
||||
${getExe cfg.package} init fish | source
|
||||
''
|
||||
+ optionalString cfg.fzf.enable ''
|
||||
${getExe cfg.mcflyFzfPackage} init fish | source
|
||||
'';
|
||||
|
||||
zshIntegration =
|
||||
''
|
||||
eval "$(${getExe cfg.package} init zsh)"
|
||||
''
|
||||
+ optionalString cfg.fzf.enable ''
|
||||
if [[ -o interactive ]]; then
|
||||
eval "$(${getExe cfg.mcflyFzfPackage} init zsh)"
|
||||
fi
|
||||
'';
|
||||
zshIntegration = ''
|
||||
eval "$(${getExe cfg.package} init zsh)"
|
||||
''
|
||||
+ optionalString cfg.fzf.enable ''
|
||||
if [[ -o interactive ]]; then
|
||||
eval "$(${getExe cfg.mcflyFzfPackage} init zsh)"
|
||||
fi
|
||||
'';
|
||||
|
||||
in
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue