August 1, 2024
My VS Code settings, extensions, and themes.
I’ve tried a lot of color themes, but I now just use the default Dark Modern theme. Themes I have used before and liked are:
Material Icon Theme. It’s great.
I keep my sidebar on the right side, because opening and closing it does not shift the code.
I changed “Explorer: Sort Order” in VS Code settings to “filesFirst”, which makes it clearer which files belong to which folder in the sidebar. I got this from this r/sveltejs post.
To hide my name and unnecessary directories from the terminal prompt, I use this PowerShell profile:
function prompt {
$currentPath = $PWD.Path
$homePath = [Environment]::GetFolderPath('UserProfile')
$shortPath = $currentPath -replace [regex]::Escape($homePath), '~'
"$shortPath > "
}
Besides official language and library extensions, I use these: