Skip to content

Instantly share code, notes, and snippets.

@vasco3
Created July 24, 2014 18:44
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 vasco3/398295202b496db00e21 to your computer and use it in GitHub Desktop.
Save vasco3/398295202b496db00e21 to your computer and use it in GitHub Desktop.
.vimrc
" Indent automatically depending on filetype
filetype indent on
set autoindent
set smartindent
set tabstop=4
set shiftwidth=4
set expandtab
" Turn on line numbering. Turn it off with "set nonu"
set number
" Set syntax on
syntax on
" Case insensitive search
set ic
" Higlhight search
set hls
" Wrap text instead of being on one line
set lbr
" Change colorscheme from default to delek
colorscheme delek
" Start Pathogen plugin manager
execute pathogen#infect()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment