Skip to content
 

My .vimrc file

In an effort to learn vim I have customized my .vimrc file, and now I release it into the public domain for you to comment on.

" Author: Edward Andrew Robinson
" Email: earobinson@gmail.com

” Mouse
:set mouse=a

” Backup
:set backup
:set writebackup

” Search
:set hlsearch

” Line numbers
:set number

” Syntax
:syntax on

” Indentation
:set autoindent
:set expandtab
:set tabstop=4

Leave a Reply