From a58a847eb0d4d273e2b1a135371390a1b8d8f026 Mon Sep 17 00:00:00 2001 From: hukl Date: Mon, 14 May 2012 20:56:40 +0200 Subject: [PATCH] some erlang specific changes --- .vimrc | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.vimrc b/.vimrc index 390b94e..223c320 100644 --- a/.vimrc +++ b/.vimrc @@ -64,7 +64,7 @@ map n :NERDTreeToggle au FileType make set noexpandtab " Erlang uses 4 spaces -au FileType erlang set softtabstop=4 +au FileType erlang set softtabstop=4 tabstop=4 shiftwidth=4 " Thorfile, Rakefile, Vagrantfile and Gemfile are Ruby au BufRead,BufNewFile {Gemfile,Rakefile,Vagrantfile,Thorfile,config.ru} set ft=ruby @@ -83,5 +83,9 @@ au FileType python set softtabstop=4 tabstop=4 shiftwidth=4 textwidth=79 " allow backspacing over everything in insert mode set backspace=indent,eol,start - +" ctrp custom ignores +let g:ctrlp_custom_ignore = { + \ 'dir': '\.git$\|\.hg$\|\.svn$\|\.eunit$', + \ 'file': '\.exe$\|\.so$\|\.dll\|\.beam$\|\.DS_Store$' + \ }