-
Notifications
You must be signed in to change notification settings - Fork 0
Home
Andrew edited this page Aug 27, 2024
·
22 revisions
From a command window, run the following
code --install-extension dbaeumer.vscode-eslint
code --install-extension streetsidesoftware.code-spell-checker
code --install-extension esbenp.prettier-vscode
code --install-extension wayou.vscode-todo-highlight
code --install-extension eamodio.gitlens
code --install-extension paulmolluzzo.convert-css-in-js
code --install-extension mikestead.dotenv
code --install-extension ritwickdey.LiveServer
code --list-extensions
React
Angular
Security
Accessibility
Misc
- webhint - includes cross browser compatibility check
- locale switcher
- Dimensions
- Source Map Explorer
- Bash: Oh My Bash
- Zsh: Oh my Zsh
- Windows: Windows terminal + Oh My Posh
# create git aliases
git config --global alias.pushf 'push --force-with-lease'
git config --global alias.logp 'log --pretty="%h %cn %s"'
git config --global alias.last 'log -1 HEAD --stat'
git config --global alias.cherryp 'cherry-pick --no-commit'
git config --global alias.logpd 'log --pretty=format:"%h %ad %s" --date=format:"%Y-%m-%d"'
# list all aliases
git config --get-regexp alias