I'm curently usinig
OZ, not Cacko, but I downloaded the latest vim from the
ZUG's Cacko feed (6.3, not sure where you got yours). There's a sample vimrc in the file /usr/share/vim/vim63/vimrc_example.vim, so I'd imagine there should be the same file in the verision directory of your package. Copy this file to ~/.vimrc & you should be good to go (other than what's below).
I noticed that this file (in 6.3) has a special check to turn syntax highlighting on only if you have a color terminal, but I'm not sure if the terminal in cancko supports that. Give it a try (there's a lot more than just syntax'ing in there), but if it doesn't work (or if you don't have a vimrc sample in your share directory), you can just create a ~/.virmc file yourself and enter whatever settings you want. Here's a few that I use to get you started:
syntax on
set hlsearch
set autoindent
set ruler
set ignorecase
set smartcase
set backspace=2
set laststatus=2
To find out what each setting does, just enter the command ':help command' (for example, ':help ruler') to get a description of it.
HAPPY VIM'ING!