Header Shadow Image


Customizing vi and vim rc files: ~/.virc and ~/.vimrc

If you're looking:

cat ~/.vimrc
" Enable plugins
filetype plugin on

" Enable indentation
filetype indent on

" Turn syntax highlighting off.  (In case there's inefficient contract between available colors.)
syntax off

" Set line numbering
set number

What about VI?  For vi, the above will also work however this is manged by the cat ~/.virc file:

cat ~/.vimrc
" Enable plugins
filetype plugin on

" Enable indentation
filetype indent on

" Turn syntax highlighting off.  (In case there's inefficient contract between available colors.)
syntax off

" Set line numbering
set number

Cheers,
 

Leave a Reply

You must be logged in to post a comment.


     
  Copyright © 2003 - 2013 Tom Kacperski (microdevsys.com). All rights reserved.

Creative Commons License
This work is licensed under a Creative Commons Attribution 3.0 Unported License