Skip to content

Commit

Permalink
Merge pull request #87 from MarioCatuogno/1.12.4-RELEASE
Browse files Browse the repository at this point in the history
1.12.4-RELEASE
  • Loading branch information
Mario Catuogno authored Nov 21, 2020
2 parents c78af85 + b537b27 commit 3134867
Show file tree
Hide file tree
Showing 4 changed files with 152 additions and 115 deletions.
2 changes: 1 addition & 1 deletion Brewfile
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ cask "font-hack"
cask "font-heavy-data-nerd-font"
cask "font-lato"
cask "font-roboto"
cask "font-ubuntumono-nerd-font"
cask "font-ubuntu-mono-nerd-font"
cask "iina"
cask "iterm2"
cask "spotify"
Expand Down
13 changes: 12 additions & 1 deletion bin/config.sh
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,6 @@ printf "⚙️ Put Visual Studio Code in quarantine to install plugins...\n"
xattr -dr com.apple.quarantine /Applications/Visual\ Studio\ Code.app
printf "📦 Install Visual Studio Code plugins...\n"
open -a "Visual Studio Code"
code --install-extension 77qingliu.sas-syntax
code --install-extension arcticicestudio.nord-visual-studio-code
code --install-extension DavidAnson.vscode-markdownlint
code --install-extension file-icons.file-icons
Expand Down Expand Up @@ -122,6 +121,18 @@ defaults write com.apple.gamed Disabled -bool true
sudo /usr/libexec/ApplicationFirewall/socketfilterfw --setglobalstate on
defaults write com.apple.TimeMachine DoNotOfferNewDisksForBackup -bool true

# Create Projects directory
printf "⚙️ Create Projects directory...\n"
mkdir ${HOME}/Projects
chmod 777 ${HOME}/Projects

# Check if Python3 is installed via Homebrew
if brew ls --versions python3 > /dev/null; then
brew uninstall --ignore-dependencies python3
else
echo "Python3 is not installed! Install it from https://www.python.org"
fi

# Cleanup
printf "⚙️ Cleanup and final touches...\n"
brew -v update && brew -v upgrade && brew cask upgrade && mas upgrade && brew -v cleanup --prune=2 && brew doctor
Expand Down
5 changes: 4 additions & 1 deletion config/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -75,5 +75,8 @@
"git.enableSmartCommit": true,
"git.autofetch": true,
// Terminal
"terminal.integrated.inheritEnv": false
"terminal.integrated.inheritEnv": false,
"python.defaultInterpreterPath": "/usr/local/bin/python3",
"python.linting.pylintEnabled": true,
"python.linting.enabled": true
}
Loading

0 comments on commit 3134867

Please sign in to comment.