VSCode

File to exclude list

settings.json
"files.excludes": {
"**/.git": true,
"**/.svn": true,
"**/node_modules": true,
"**/.next": true,
"**/dist": true,
"**/.astro": true,
"**/.obsidian": true,
"**/build": true
}
Enable font ligatures

For example, you type > + = => >=

  1. Download Font
  2. Extract and install the font
  3. Configuration VSCode
settings.json
{
"editor.fontFamily": "JetBrains Mono",
"terminal.integrated.fontFamily": "JetBrains Mono", // Change font terminal
"chat.editor.fontFamily": "JetBrains Mono", // Change font chat
"editor.fontLigatures": true, // enabled font ligatures
}
Search Results VScode

  • Keyboard shortcut: Globals: cmd + 3, Editor: cmd + R
  • Exclude file or folders on search result:
settings.json
{
"search.exclude": {
"**/node_modules": true,
"**/bower_components": true,
"**/*.code-search": true,
"**/_site": true,
"**/.next": true,
"**/var/log": true
}
}
List extensions

I’m using these extensions

Terminal window
# list installed extensions
code --list-extensions | xargs -L 1 echo code --install-extension
Add extra path to auto complete (Laragon)

settings.json
{
"php.validate.executablePath": "C:\\laragon\\bin\\php\\php.exe",
"terminal.integrated.shell.windows": "C:\\laragon\\bin\\cmder\\cmder.bat"
}