Skip to content
This repository has been archived by the owner on Mar 24, 2021. It is now read-only.

Commit

Permalink
fix(polyglot): disabled by default, conflicts with too many plugins
Browse files Browse the repository at this point in the history
  • Loading branch information
LER0ever committed Apr 12, 2017
1 parent 90c177d commit 2112a5b
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
6 changes: 6 additions & 0 deletions .vimrc
Original file line number Diff line number Diff line change
Expand Up @@ -762,6 +762,12 @@
endif
" }

" vim-polyglot {
if isdirectory(expand("~/.vim/bundle/vim-polyglot"))
let g:polyglot_disabled = ['markdown', 'go', 'c/c++', 'css', 'html5', 'javascript', 'rust', 'toml']
endif
" }

" Session List {
set sessionoptions=blank,buffers,curdir,folds,tabpages,winsize
if isdirectory(expand("~/.vim/bundle/sessionman.vim/"))
Expand Down
5 changes: 3 additions & 2 deletions .vimrc.bundles
Original file line number Diff line number Diff line change
Expand Up @@ -164,6 +164,7 @@

" Writing {
if count(g:evervim_bundle_groups, 'writing')
Plug 'tpope/vim-markdown' ", {'for': 'markdown'}
Plug 'reedes/vim-litecorrect'
Plug 'reedes/vim-textobj-sentence'
Plug 'reedes/vim-textobj-quote'
Expand All @@ -186,7 +187,8 @@
Plug 'scrooloose/syntastic'
Plug 'tpope/vim-fugitive'
Plug 'jiangmiao/auto-pairs'
Plug 'sheerun/vim-polyglot'
" Plug 'sheerun/vim-polyglot' " disabled by default, conflicts
" with many plugins
Plug 'mattn/webapi-vim'
Plug 'mattn/gist-vim'
Plug 'scrooloose/nerdcommenter'
Expand Down Expand Up @@ -354,7 +356,6 @@

" Misc {
if count(g:evervim_bundle_groups, 'misc')
Plug 'tpope/vim-markdown' ", {'for': 'markdown'}
Plug 'vimwiki/vimwiki'
Plug 'spf13/vim-preview'
Plug 'tpope/vim-cucumber'
Expand Down

0 comments on commit 2112a5b

Please sign in to comment.