Это потому, что подсветка по умолчанию отключена. Попробуйте :syntax on
и если vim не распознает тип файла, вы можете сделать это вручную с помощью set filetype=<filetype>
, например, set filetype=php
.
Хотя получить полный список типов файлов с подсветкой синтаксиса в gvim просто, для консольной версии у вас есть несколько вариантов: a) перечислить автокоманды, которые их идентифицируют
:au filetypedetect
These autocommands are set by $VIMRUNTIME/filetype.vim; one of them runs
$VIMRUNTIME/scripts.vim to try to identify files from their contents
when the name, path, etc. are not enough.
b) check which filetypes have scripts to handle them
(gvim) Syntax => Show filetypes in menu
which, however, lists only preinstalled filetypes, and not with the name
under which the 'filetype' or 'syntax' option knows them;
or else, for each of the directories listed in the 'runtimepath' option,
list (using ls on Unix or dir, possibly dir /w to save space, on Windows):
<directory>/ftplugin/*.vim
<directory>/indent/*.vim
<directory>/syntax/*.vim
Note that 'filetype' (as used by ftplugin and indent scripts) and
'syntax' (as used by syntax scripts) are separate options, which have
usually the same value but could be different.
In a "vanilla" install of Vim with no third-party scripts installed, the
only value of <directory> above pointing to an existing, nonempty
directory is your $VIMRUNTIME directory.