mirror of
https://github.com/zdharma-continuum/zinit-configs.git
synced 2025-02-24 22:49:26 +01:00
12 lines
146 B
Bash
12 lines
146 B
Bash
#!/usr/bin/env zsh
|
|
|
|
case `uname` in
|
|
Darwin)
|
|
brew install fzf
|
|
;;
|
|
Linux)
|
|
# No such package
|
|
# sudo apt install fzf
|
|
:
|
|
;;
|
|
esac
|