Essential Extensions to Use with VS Code as a DevOps Suite
May 1, 2024•79 words
Extensions
Material Icon Theme
Settings:
- Folder icon: None (to see files icons clearly)
- Explorer sort order: Type (to see groups of files in folder)
Run Terminal Command
Settings
Choose WSL as the default shell first, and put these settings:
(Remember to use powershell.exe, not powershell for running in WSL)
"runTerminalCommand.commands": [
{
"command": "bash '{resource}'",
"auto": true,
"preserve": false
},
{
"command": "powershell.exe -file '{resource}'",
"auto": true,
"preserve": false
}
]