Home > OS >  How can I get Jupyter-notebook syntax highlighting in VS code?
How can I get Jupyter-notebook syntax highlighting in VS code?

Time:06-30

I installed Visual Studio Code, and want to customize syntax highlight to be the same as Jupyter notebook. I'm using default light theme and that's good but colors of python built-in functions and methods aren't.

What should I do?

CodePudding user response:

Seems there is a theme for that on the VS Code extensions site. You should be able to install it from the extensions tab on VS Code itself or through "Install" from that link.

Hope this helps.

CodePudding user response:

Since the code itself is written in python, as long as you have the language support you should get the Syntax Highlighting, Autocomplete and IntelliSense and intelli-sense prompts. See: https://code.visualstudio.com/docs/languages/python.

For a full walkthrough on setting up a jupyter-notebook see: https://code.visualstudio.com/docs/datascience/jupyter-notebooks

  • Related