macos script fix

This commit is contained in:
vlnko 2026-01-03 16:46:01 +03:00
parent 3a74fbb974
commit f820647270
2 changed files with 8 additions and 11 deletions

0
git-set.sh Normal file → Executable file
View File

19
macos-first-install.sh Normal file → Executable file
View File

@ -1,16 +1,5 @@
#!/bin/bash #!/bin/bash
# Installing homebrew
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
echo "✅ Homebrew installed"
# Installing z
brew install z
echo "✅ Z installed"
# Installing ohmyzsh
sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
# Installing zsh-autosuggestions plugin # Installing zsh-autosuggestions plugin
git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions
@ -29,6 +18,10 @@ alias dea=". env/bin/activate"
EOF EOF
echo "✅ Ohmyzsh installed, .zshrc created, zsh-autosuggestions installed" echo "✅ Ohmyzsh installed, .zshrc created, zsh-autosuggestions installed"
# Installing z
brew install z
echo "✅ Z installed"
# Installing neovim and config # Installing neovim and config
brew install neovim brew install neovim
mkdir -p ~/.config/nvim mkdir -p ~/.config/nvim
@ -51,3 +44,7 @@ brew install --cask figma
echo "✅ Figma installed" echo "✅ Figma installed"
brew install --cask firefox brew install --cask firefox
echo "✅ Firefox installed" echo "✅ Firefox installed"
brew install --cask telegram
echo "✅ Telegram installed"
brew install --cask vscodium
echo "✅ VSCodium installed"