Skip to content

Instantly share code, notes, and snippets.

@suneg
Created July 9, 2013 15:21
Show Gist options
  • Save suneg/5958245 to your computer and use it in GitHub Desktop.
Save suneg/5958245 to your computer and use it in GitHub Desktop.
syntax on
set nocompatible
set softtabstop=2
set shiftwidth=2
set expandtab
set autoindent
set showmatch
set wildmenu
set wildmode=list:longest,full
if has('gui_running')
set gfn=Consolas
set lines=35
set columns=145
winpos 100 100
set guioptions-=T " remove the toolbar
endif
colorscheme murphy
filetype on
set nu
set nobackup
set ruler " show the ruler
set rulerformat=%30(%=\:b%n%y%m%r%w\ %l,%c%V\ %P%) " a ruler on steroids
set showcmd " show partial commands in status line and
set backspace=indent,eol,start
set incsearch " find as you type search
set hlsearch " highlight search terms
set scrolloff=3 " minimum lines to keep above and below cursor
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment