Numbers of lines are missing in vi editor

Thx Thanks, I've reinstalled vim from ports, but numbers of lines are still missing. Howto How to enable them?
 
This problem is solved now! If you need numbers every time you start vi/vim:
# vi ~/.exrc and append the following line:
Code:
set number
 
That's one of those essential options I like to have set system-wide in /etc/vi.exrc:
Code:
set leftright
set number
set ruler
set showmode
 
Yep, but I really don't like to have these numbers on the left site. I like to have them down, like on Linux. Is it possible to have it the Linux way?
 
Thanks, using just:
Code:
set ruler
set showmode
in /etc/vi.exrc is exact what I want!
 
Back
Top