Skip to content

Commit

Permalink
Adding syntastic, json to ackrc
Browse files Browse the repository at this point in the history
  • Loading branch information
clifff committed Aug 22, 2012
1 parent 2db58c8 commit 72ff414
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .ackrc
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
--type-set=coffeescript=.coffee
--type-set=css=.scss
--ignore-dir=public/cache
--type-set=json=.json
--type-add=js=.json
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,6 @@
[submodule ".vim/bundle/matchit"]
path = .vim/bundle/matchit
url = https://github.com/tsaleh/vim-matchit
[submodule ".vim/bundle/syntastic"]
path = .vim/bundle/syntastic
url = https://github.com/scrooloose/syntastic
5 changes: 5 additions & 0 deletions .gvimrc
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,8 @@ set gfn=Inconsolate-dz:h12

" Set some useful ignores for Command-T
set wildignore+=public/cache/*,tmp/*,.sass-cache/*

" Show syntastic errors in location-list
let g:syntastic_auto_loc_list=1
let g:syntastic_auto_loc_list_height=3

4 changes: 3 additions & 1 deletion .vim/.netrwhist
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
let g:netrw_dirhistmax =10
let g:netrw_dirhist_cnt =4
let g:netrw_dirhist_cnt =6
let g:netrw_dirhist_1='/usr/bin'
let g:netrw_dirhist_2='/Users/clifff/Code/syllabus'
let g:netrw_dirhist_3='/Users/clifff/src/rails'
let g:netrw_dirhist_4='/Users/clifff/Code/linode_chef_solo/cookbooks/rvm'
let g:netrw_dirhist_5='/Users/clifff/.vim'
let g:netrw_dirhist_6='/Users/clifff/.rvm/rubies/ruby-1.9.2-p290'
1 change: 1 addition & 0 deletions .vim/bundle/syntastic
Submodule syntastic added at e5dfcc
4 changes: 4 additions & 0 deletions .vimrc
Original file line number Diff line number Diff line change
Expand Up @@ -64,5 +64,9 @@ match ExtraWhitespace /\s\+\%#\@<!$/
" Highlight 80 character boundry
set colorcolumn=81

" Show syntastic errors in location-list
let g:syntastic_auto_loc_list=1
let g:syntastic_auto_loc_list_height=3

" Load up pathogen / plugins
call pathogen#infect()

0 comments on commit 72ff414

Please sign in to comment.