File to exclude list
"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 >
+ =
=> >=
- Download Font
- Extract and install the font
- Configuration VSCode
{ "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:
{ "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
# list installed extensionscode --list-extensions | xargs -L 1 echo code --install-extension
Add extra path to auto complete (Laragon)
{ "php.validate.executablePath": "C:\\laragon\\bin\\php\\php.exe", "terminal.integrated.shell.windows": "C:\\laragon\\bin\\cmder\\cmder.bat"}