日志:致命:无法读取“https://github.com”的用户名:终端提示已禁用

问题描述 投票:0回答:1

我正在尝试安装lazy.nvim。下载neocinf.nvim时失败。

我尝试将 user.name 和 user.email 设置为 git config,但仍然失败。我该怎么办?

对了,我也尝试过:git config --global --add url."[email protected]:".而不是"https://github.com/",仍然失败。

require("lazy").setup({
    "folke/which-key.nvim",
    {"folke/neocinf.nvim", cmd="Neoconf"},
    "folke/neodev.nvim",
})

require("lazy").setup(plugins, opts)

我是 lua 脚本的新手,这是正确的吗?

git neovim
1个回答
0
投票

您可以删除名称中的“.nvim”,改用“folke/which-key”

事实上,如果插件以.lua结尾,你应该将其添加到名称中。 但如果插件以 .nvim 结尾,你应该删除它

© www.soinside.com 2019 - 2024. All rights reserved.