Skip to content

Latest commit

 

History

History
24 lines (14 loc) · 376 Bytes

File metadata and controls

24 lines (14 loc) · 376 Bytes

The .vimrc file

The .vimrc file can be used to customize your vim environment.

On OS X, edit your .vimrc file by running vim ~/.vimrc.

Examples of what you could change:

" Sets how many lines of history to remember
set history=700

" Enables syntax highlighting
syntax on

" Change colorscheme
colorscheme badwolf

" Show line numbers
set number