Skip to content

Instantly share code, notes, and snippets.

@arajek
Created July 2, 2012 00:39
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 arajek/3030205 to your computer and use it in GitHub Desktop.
Save arajek/3030205 to your computer and use it in GitHub Desktop.
My .vimrc setup
:colorscheme wombat256
set hlsearch "highlights searched items
set incsearch "enables incremental search
set ignorecase "ignore case while searching
set smartcase "makes ssearches case sensitive only if there are cap letters in term
set autoindent "uses indent from previous line
set ruler "shows number and column in status bar at bottom
set number "shows line numbers on side of screen
set tabstop=2 "sets tab to two spaces
set softtabstop=2 "sets tab to two spaces
set history=100 "sets command history to 100
set wildmenu "allows bash like tab completion
set wildmode=list:longest "allows even more bash like tab completion
set title "sets term title to file name
set hidden "lets buffer switching without saving file
set visualbell "gets rid of the beep sound on errors
set cursorline "hightlights line cursor is on
set laststatus=2 "makes it always show statusline
syntax on "turn on syntax highlighting
filetype on
filetype indent on
filetype plugin on
filetype plugin indent on
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment