diff --git a/.vimrc b/.vimrc index 5e2c43b..6337cf1 100644 --- a/.vimrc +++ b/.vimrc @@ -39,6 +39,8 @@ map m :tabnext "CTRL-N to open Nerd Tree map :NERDTreeToggle +let NERDTreeIgnore = ['\.pyc$'] + "Close vim when NERDTree is the only window open autocmd bufenter * if (winnr("$") == 1 && exists("b:NERDTreeType") && b:NERDTreeType == "primary") | q | endif @@ -62,6 +64,10 @@ Bundle 'rstacruz/sparkup', {'rtp': 'vim/'} Bundle 'tpope/vim-rails.git' Bundle 'https://github.com/fholgado/minibufexpl.vim' Bundle 'evanmiller/nginx-vim-syntax' +Bundle "wookiehangover/jshint.vim" +Bundle "bpowell/vim-android.git" + +let g:JSHintHighlightErrorLine = 0 Bundle "pangloss/vim-javascript" @@ -81,6 +87,9 @@ let g:ctrlp_custom_ignore = { set wildignore+=*.pyc set wildignore+=*_build/* +let g:syntastic_always_populate_loc_list = 0 +let g:syntastic_auto_loc_list = 0 + Bundle 'https://github.com/klen/python-mode.git' map g :call RopeGotoDefinition() let ropevim_enable_shortcuts = 1