.vimrc

set nobackup " do not save ~file set backspace=2 " backspace in insert mode like other editorsset cursorline " location of cursor shown as underscoresyntax on " syntax highlightingset number " line numbersfiletype indent on " activates indenting for filesset autoindent " auto indentingset si " smart indentset expandtab " use spaces instead of tabsset smarttab " use smarts when tabbingset shiftwidth=2 " 1 tab == 2 spacesset tabstop=2set softtabstop=2set textwidth=130 " wrap lines 130 chars, wide-carriage :)set hlsearch " highlight search resultsset incsearch " incremental search to move result while typingset showmatch " show matching brackets

Read More →