Commit 94e6a889 authored by Murukesh Mohanan's avatar Murukesh Mohanan

plugin update

parent 0994d7af
......@@ -121,6 +121,9 @@ function! plug#begin(...)
else
return s:err('Unable to determine plug home. Try calling plug#begin() with a path argument.')
endif
if fnamemodify(home, ':t') ==# 'plugin' && fnamemodify(home, ':h') ==# s:first_rtp
return s:err('Invalid plug home. '.home.' is a standard Vim runtime path and is not allowed.')
endif
let g:plug_home = home
let g:plugs = {}
......
......@@ -144,9 +144,8 @@ if executable('cmake')
endif
if executable('go')
Plug 'fatih/vim-go', {'for': 'go'}
"Plug 'Shougo/neocomplete.vim', {'for': 'go'}
"Plug 'Shougo/vimproc.vim', {'do': 'make'}
"Plug 'Shougo/echodoc.vim'
Plug 'Shougo/neocomplete.vim', {'for': 'go'}
Plug 'Shougo/echodoc.vim'
endif
if executable('latex')
Plug 'lervag/vimtex', {'for': 'tex'}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment