x vim-go:
Cloning into '/Users/amitava/.nvim/plugged/vim-go'...
fatal: could not read Username for 'https://github.com': terminal prompts disabled
In my .vimrc (neovim), I have added the following
call plug#begin()
Plug 'faith/vim-go'
call plug#end()
Afterwards, I invoke :PlugInstall which produces the error above.
vim version
amitava:go amitava$ vim --version
NVIM 0.0.0-alpha+201509272033 (compiled Sep 29 2015 19:30:00)
Commit: 622ec95c3f793a814b3e7c0ee697c959f5b77332
Build type: RelWithDebInfo
Compilation: /usr/local/Library/ENV/4.3/clang -Wconversion -O2 -g -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -Wvla -std=gnu99 -fstack-protector-strong -fdiagnostics-color=auto -DINCLUDE_GENERATED_DECLARATIONS -DHAVE_CONFIG_H -I/tmp/neovim20150929-10113-19v4mzt/build/config -I/tmp/neovim20150929-10113-19v4mzt/src -I/tmp/neovim20150929-10113-19v4mzt/deps-build/usr/include -I/tmp/neovim20150929-10113-19v4mzt/deps-build/usr/include -I/tmp/neovim20150929-10113-19v4mzt/deps-build/usr/include/luajit-2.0 -I/tmp/neovim20150929-10113-19v4mzt/deps-build/usr/include -I/tmp/neovim20150929-10113-19v4mzt/deps-build/usr/include -I/tmp/neovim20150929-10113-19v4mzt/deps-build/usr/include -I/tmp/neovim20150929-10113-19v4mzt/deps-build/usr/include -I/usr/local/opt/gettext/include -I/usr/include -I/tmp/neovim20150929-10113-19v4mzt/build/src/nvim/auto -I/tmp/neovim20150929-10113-19v4mzt/build/include
Compiled by [email protected]
Optional features included (+) or not (-): +acl +iconv +jemalloc
For differences from Vim, see :help vim-differences
system vimrc file: "$VIM/nvimrc"
user vimrc file: "~/.nvimrc"
2nd user vimrc file: "~/.nvim/nvimrc"
user exrc file: "~/.exrc"
fall-back for $VIM: "/usr/local/Cellar/neovim/HEAD/share/nvim"
*vim-go version: github tip?
amitava:go amitava$ go version
go version go1.6 darwin/amd64
Hi @ashee
This is related with your Github setup, it's not a vim-go problem. Here are couple of links to help you:
Thanks
Turns out it was a typo - I wrote "faith" as opposed to "fatih" in my ~/.vimrc. After correction,
Plug 'fatih/vim-go'
Most helpful comment
Turns out it was a typo - I wrote "faith" as opposed to "fatih" in my ~/.vimrc. After correction,