Skip to content

Latest commit

 

History

History
24 lines (17 loc) · 491 Bytes

mac_conf.md

File metadata and controls

24 lines (17 loc) · 491 Bytes

Mac configuration's

Bash configuration

chsh -s /bin/bash   # change default shell
# add bashrc file configurations to ~/.bash_profile

## Install bashh with brew
brew install bash
sudo sh -c 'echo /opt/homebrew/bin/bash >> /etc/shells'
cat /etc/shells      # Check the whole shell list
chsh -s /opt/homebrew/bin/bash

Visual studio Code

cat << EOF >> ~/.bash_profile
export PATH="\$PATH:/Applications/Visual Studio Code.app/Contents/Resources/app/bin"
EOF