add fselect and bat
This commit is contained in:
parent
38c367bb34
commit
f7e10d767d
4
Brewfile
4
Brewfile
@ -64,6 +64,10 @@ brew "mas"
|
|||||||
brew "pyenv"
|
brew "pyenv"
|
||||||
# Google CLI https://github.com/jarun/googler
|
# Google CLI https://github.com/jarun/googler
|
||||||
brew "googler"
|
brew "googler"
|
||||||
|
# Install bat https://github.com/sharkdp/bat
|
||||||
|
brew "bat"
|
||||||
|
# https://github.com/jhspetersson/fselect
|
||||||
|
brew "fselect"
|
||||||
|
|
||||||
mas 'Keynote', id: 409183694
|
mas 'Keynote', id: 409183694
|
||||||
mas 'iMovie', id: 408981434
|
mas 'iMovie', id: 408981434
|
||||||
|
@ -169,3 +169,12 @@ cd $HOME
|
|||||||
|
|
||||||
# Install googler https://github.com/jarun/googler#installation
|
# Install googler https://github.com/jarun/googler#installation
|
||||||
sudo curl -o /usr/local/bin/googler https://raw.githubusercontent.com/jarun/googler/v3.9/googler && sudo chmod +x /usr/local/bin/googler
|
sudo curl -o /usr/local/bin/googler https://raw.githubusercontent.com/jarun/googler/v3.9/googler && sudo chmod +x /usr/local/bin/googler
|
||||||
|
|
||||||
|
# Install BAT (cat with more power)
|
||||||
|
wget https://github.com/sharkdp/bat/releases/download/v0.11.0/bat-v0.11.0-x86_64-unknown-linux-musl.tar.gz \
|
||||||
|
&& tar -xzvf bat-v0.11.0-x86_64-unknown-linux-musl.tar.gz \
|
||||||
|
&& mv bat-v0.11.0-x86_64-unknown-linux-musl/bat /usr/local/bin/ \
|
||||||
|
&& rm -rf bat-v0.11.0-x86_64-unknown-linux-musl*
|
||||||
|
|
||||||
|
# Install fselect
|
||||||
|
cargo install fselect
|
||||||
|
Loading…
Reference in New Issue
Block a user