✨ Add more installs to let brew manage core utils
This commit is contained in:
parent
03c9232dd1
commit
715d0ddfed
4 changed files with 25 additions and 3 deletions
|
@ -8,6 +8,17 @@ source "$DOT/node/node_utils.fish"
|
||||||
|
|
||||||
print_subtitle Fish
|
print_subtitle Fish
|
||||||
|
|
||||||
|
brew_install "GNU Core Utilities" coreutils
|
||||||
|
execute "ln -sf '$(brew --prefix)/bin/gsha256sum' '$(brew --prefix)/bin/sha256sum'" \
|
||||||
|
"Use brew installed GNU Core Utils by default"
|
||||||
|
|
||||||
|
brew_install wget wget --with-iri
|
||||||
|
brew_install cURL curl
|
||||||
|
brew_install grep grep
|
||||||
|
brew_install OpenSSH openssh
|
||||||
|
brew_install ImageMagick imagemagick
|
||||||
|
brew_install ssh-copy-id ssh-copy-id
|
||||||
|
|
||||||
execute "fisher install catppuccin/fish" catppuccin/fish
|
execute "fisher install catppuccin/fish" catppuccin/fish
|
||||||
execute "fisher install decors/fish-colored-man" fish-colored-man
|
execute "fisher install decors/fish-colored-man" fish-colored-man
|
||||||
|
|
||||||
|
@ -16,3 +27,4 @@ brew_install "Starship Prompt" starship
|
||||||
brew_install "The Fuck" thefuck
|
brew_install "The Fuck" thefuck
|
||||||
npm_install "tldr pages" tldr
|
npm_install "tldr pages" tldr
|
||||||
brew_install eza eza
|
brew_install eza eza
|
||||||
|
brew_install GnuPG gnupg
|
||||||
|
|
|
@ -8,9 +8,6 @@ source "$DOT/os/apt_utils.fish"
|
||||||
|
|
||||||
print_subtitle OS
|
print_subtitle OS
|
||||||
|
|
||||||
brew_install wget wget
|
|
||||||
brew_install cURL curl
|
|
||||||
|
|
||||||
if [ "$(uname)" = Darwin ]
|
if [ "$(uname)" = Darwin ]
|
||||||
brew_install mas-cli mas
|
brew_install mas-cli mas
|
||||||
|
|
||||||
|
|
3
os/path.config.fish
Normal file
3
os/path.config.fish
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
#!/usr/bin/env fish
|
||||||
|
|
||||||
|
fish_add_path "$(brew --prefix coreutils)/libexec/gnubin"
|
10
vim/install.fish
Normal file
10
vim/install.fish
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
#!/usr/bin/env fish
|
||||||
|
|
||||||
|
source "$DOT/script/utils.fish"
|
||||||
|
source "$DOT/homebrew/brew_utils.fish"
|
||||||
|
|
||||||
|
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||||
|
|
||||||
|
print_subtitle vim
|
||||||
|
|
||||||
|
brew_install vim vim
|
Loading…
Reference in a new issue