Skip to content

Commit

Permalink
some erlang specific changes
Browse files Browse the repository at this point in the history
  • Loading branch information
hukl committed May 14, 2012
1 parent 8220911 commit a58a847
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .vimrc
Expand Up @@ -64,7 +64,7 @@ map <Leader>n :NERDTreeToggle<CR>
au FileType make set noexpandtab au FileType make set noexpandtab


" Erlang uses 4 spaces " 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 " Thorfile, Rakefile, Vagrantfile and Gemfile are Ruby
au BufRead,BufNewFile {Gemfile,Rakefile,Vagrantfile,Thorfile,config.ru} set ft=ruby au BufRead,BufNewFile {Gemfile,Rakefile,Vagrantfile,Thorfile,config.ru} set ft=ruby
Expand All @@ -83,5 +83,9 @@ au FileType python set softtabstop=4 tabstop=4 shiftwidth=4 textwidth=79
" allow backspacing over everything in insert mode " allow backspacing over everything in insert mode
set backspace=indent,eol,start 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$'
\ }


0 comments on commit a58a847

Please sign in to comment.