Skip to content

Instantly share code, notes, and snippets.

@metaodi
Created August 13, 2012 06:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save metaodi/3337425 to your computer and use it in GitHub Desktop.
Save metaodi/3337425 to your computer and use it in GitHub Desktop.
Vim config (.vimrc)
" Attempt to determine the type of a file based on its name and possibly its
" contents. Use this to allow intelligent auto-indenting for each filetype,
" and for plugins that are filetype specific.
filetype indent plugin on
" Enable syntax highlighting
syntax on
" Highlight searches (use <C-L> to temporarily turn off highlighting; see the
" mapping of <C-L> below)
set hlsearch
" Use case insensitive search, except when using capital letters
set ignorecase
set smartcase
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment