Removed plugin "Plug 'sheerun/vim-polyglot' (causing errors)

This commit is contained in:
2020-10-23 13:20:55 -04:00
parent cbfee19efe
commit 2b9da46949

5
.vimrc
View File

@@ -70,8 +70,6 @@ endif
" ...one step above 'nocompatible' mode: a universal set of defaults that (hopefully) everyone can agree on. " ...one step above 'nocompatible' mode: a universal set of defaults that (hopefully) everyone can agree on.
Plug 'tpope/vim-sensible' Plug 'tpope/vim-sensible'
" Syntax highlights for multiple languages
Plug 'sheerun/vim-polyglot'
" Syntax highlights for markdown " Syntax highlights for markdown
Plug 'tpope/vim-markdown' Plug 'tpope/vim-markdown'
@@ -89,6 +87,9 @@ Plug 'tpope/vim-fugitive'
" Linter " Linter
Plug 'dense-analysis/ale' Plug 'dense-analysis/ale'
" Syntax highlights for multiple languages
"Plug 'sheerun/vim-polyglot'
call plug#end() call plug#end()
" --------------------------------------------------------------------------------------------------------------------- " ---------------------------------------------------------------------------------------------------------------------