Useful Plugins
- Bracket Pair Colorizer 2
- cursoruler
- Kite Autocomplete for Python and JavaScript
- Latex Workshop
- Live Share and/or Live Share Extension Pack
- Render Line Endings
- Todo Tree
- vscode-icons
Change color of multiline comments in Python
Add this to your settings.json
. The “foreground” key should have your color. This example is my desired color for Monokai Classic theme
"editor.tokenColorCustomizations": {
"textMateRules": [
{
"scope": "string.quoted.docstring.multi.python",
"settings": {
"foreground": "#6E7066"
}
},
{
"scope": "string.quoted.docstring.multi.python punctuation.definition.string.end.python",
"settings": {
"foreground": "#6E7066"
}
},
{
"scope": "string.quoted.docstring.multi.python punctuation.definition.string.begin.python",
"settings": {
"foreground": "#6E7066"
}
}
]
},
Change the font for the Terminal
Add this to your settings.json
. This is to fit a Oh-My-Zsh as your default shell tool
"terminal.integrated.automationShell.linux": "",
"terminal.integrated.fontFamily": "Meslo LG M for Powerline",
Vertical/Column Highlighting
Install cursoruler
, and then paste the following in your settings.json
. This example is specific to using Monokai Classic as the theme
"cursor-ruler.color": "#32332D",
"cursor-ruler.width": "8px",
Remove Tooltip/Suggestions
Add the following to your JSON settings
"editor.parameterHints": false,