vimrc for FreeBSD
Posted in BSD+Linux | By tarotoast |
Default behavior of FreeBSD’s vim is retarded. To get Linux behavior and some other features, append the following text into ~/.vimrc:
set nocompatible
set backspace=indent,eol,start
set autoindent
set number
set nowrap
set nobackup
set ruler
syntax on
Now it behaves like what you think it should.
February 22nd, 2007 at 7:15 am
Thanks for this tip!
May 1st, 2007 at 9:45 pm
Thanks, this is exactly what I needed.