Skip to content

Instantly share code, notes, and snippets.

@ctulek
Created April 22, 2013 15:15
Show Gist options
  • Save ctulek/5435840 to your computer and use it in GitHub Desktop.
Save ctulek/5435840 to your computer and use it in GitHub Desktop.
call pathogen#infect()
filetype plugin indent on
syntax enable
set number
set ar
" Search
set smartcase
set hlsearch
set incsearch
" Solarized
set background=dark
colorscheme solarized
" Backup
set nobackup
set nowb
set noswapfile
" Tab/ Indent
set expandtab
set shiftwidth=4
set tabstop=4
set smarttab
set ai
set si
set wrap
" MacVim
set guioptions-=T
set guioptions-=m
set clipboard=unnamed
set guioptions-=l
set guioptions-=r
set guioptions-=b
" ctrlp settings
let g:ctrlp_max_files = 0
let g:ctrlp_custom_ignore = '\.class$'
" General File ignores
set wildignore+=*/.git/*
set wildignore+=*/.idea/*
au FileType makefile,Makefile set noexpandtab
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment