Skip to content

Instantly share code, notes, and snippets.

@iamanvesh
Created October 11, 2014 13:52
Show Gist options
  • Save iamanvesh/78eccf8484d76e72eea1 to your computer and use it in GitHub Desktop.
Save iamanvesh/78eccf8484d76e72eea1 to your computer and use it in GitHub Desktop.
My vimrc
" Indent automatically depending on filetype
filetype indent on
set autoindent
" 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
" Set Incremental search
set incsearch
" Set tab-width to 4
set tabstop=4
" Set auto-indent with to 4
set shiftwidth=4
" Keep 5 lines below and above the cursor
set scrolloff=5
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment