我有
lazy.lua
local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim"
if not vim.loop.fs_stat(lazypath) then
vim.fn.system({
"git",
"clone",
"--filter=blob:none",
"https://github.com/folke/lazy.nvim.git",
"--branch=stable", -- latest stable release
lazypath,
})
end
vim.opt.rtp:prepend(lazypath)
require("lazy").setup(
{
'nvim-telescope/telescope.nvim',
tag = '0.1.5',
dependencies = { 'nvim-lua/plenary.nvim' }
},
{
"rose-pine/neovim",
name = "rose-pine"
}
)
我已将
lazy.lua
添加到 init.lua
由于某种原因,当我使用
:Lazy
时,我可以看到只安装了望远镜,但没有安装玫瑰松主题。
并且
:message
不显示任何错误消息
那是很久以前的事了,说实话,我也不记得我是如何解决这个问题的
现在愉快地使用 nvim 9 个月了 - 非常酷