-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Verify macOS aliases * Updates - Update aliases - Update vim settings - test * Remove unicode characters for plain text
- Loading branch information
1 parent
24964e1
commit 5421a31
Showing
3 changed files
with
70 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,57 @@ | |
# vscode | ||
# https://code.visualstudio.com/download | ||
# https://code.visualstudio.com/docs/setup/mac | ||
cat << EOF >> ~/.zprofile | ||
ZPROFILE="${HOME}/.zprofile" | ||
if ! grep -i 'Visual Studio Code.app' "${ZPROFILE}" 1>/dev/null 2>&1; then | ||
cat << EOF >> "${ZPROFILE}" | ||
# Add Visual Studio Code (code) | ||
export PATH="\$PATH:/Applications/Visual Studio Code.app/Contents/Resources/app/bin" | ||
export PATH="\${PATH}:/Applications/Visual Studio Code.app/Contents/Resources/app/bin" | ||
EOF | ||
source "${ZPROFILE}" | ||
fi | ||
|
||
# code --list-extensions | ||
# code --install-extension [email protected] | ||
# @installed | ||
# @sort:name microsoft | ||
while IFS= read -r line; do | ||
code --install-extension "${line}"; | ||
done << \EOF | ||
azsdktm.SecurityIntelliSense | ||
chef-software.chef | ||
Dart-Code.dart-code | ||
Dart-Code.flutter | ||
dbaeumer.vscode-eslint | ||
DotJoshJohnson.xml | ||
esbenp.prettier-vscode | ||
golang.go | ||
hashicorp.hcl | ||
hashicorp.terraform | ||
k--kato.docomment | ||
ms-dotnettools.csharp | ||
ms-kubernetes-tools.vscode-kubernetes-tools | ||
ms-python.pylint | ||
ms-python.python | ||
ms-python.vscode-pylance | ||
ms-vscode-remote.remote-containers | ||
ms-vscode.cmake-tools | ||
ms-vscode.cpptools | ||
ms-vscode.cpptools-extension-pack | ||
ms-vscode.cpptools-themes | ||
ms-vscode.hexeditor | ||
ms-vscode.live-server | ||
ms-vscode.powershell | ||
puppet.puppet-vscode | ||
redhat.ansible | ||
rust-lang.rust-analyzer | ||
ryuta46.multi-command | ||
streetsidesoftware.code-spell-checker | ||
VisualStudioExptTeam.intellicode-api-usage-examples | ||
VisualStudioExptTeam.vscodeintellicode | ||
vscjava.vscode-java-debug | ||
vscjava.vscode-java-dependency | ||
vscjava.vscode-java-pack | ||
vscjava.vscode-java-test | ||
vscjava.vscode-maven | ||
vscode-icons-team.vscode-icons | ||
EOF |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters