Skip to content

Instantly share code, notes, and snippets.

@BenDavidJamin
Created September 20, 2013 19:20

Revisions

  1. BenDavidJamin created this gist Sep 20, 2013.
    22 changes: 22 additions & 0 deletions .vimrc
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,22 @@
    " Turn on line numbering. Turn it off set "set nonu"
    set nu

    " Set syntax on
    syntax on

    " Indent automtically depending on filetype
    filetype indent on
    set autoindent
    set smartindent
    set tabstop=2
    set shiftwidth=2
    set expandtab

    " Highlight search
    set hls

    " Wrap text instead of being on one line
    set lbr

    " Chnage colorscheme from default to delek
    colorscheme delek