Reputation: 1353
How do I do I set the syntax highlighting in Vim 7 for python?
I would like to set my own colorschemes, and syntax highlighting for a type of code file.
Upvotes: 117
Views: 147503
Reputation: 18059
The command to enable syntax highlighting in vim is :syntax on
, if you want it to be active everytime you launch vim, just add a line containing syntax on
in your .vimrc file.
If you're already editing a Python file and syntax highlighting wasn't on, after enabling syntax highlighting (as above) then: :set filetype=python
Upvotes: 170
Reputation: 11226
If you're on *nix system (linux, macos) or cygwin and if you already have vim :set syntax
set but your filename doesn't end with .py
you can add a shebang to the first line of your file:
#!/usr/bin/env python
Next time you open the file in vim, you should see syntax highlighting. Note this will work for other file types, you just use the interpreter name i.e. (python, ruby, sh)
Upvotes: 1
Reputation: 888
sudo apt-get install vim
.vimrc
file with the instruction echo "syntax on" >> ~/.vimrc
vi app.py
. You will see the Syntax highlighting Upvotes: 9