为什么lazy nvim的插件没有加载?

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

我有

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
不显示任何错误消息

neovim
1个回答
0
投票

那是很久以前的事了,说实话,我也不记得我是如何解决这个问题的

  1. 语法错误
  2. 已重新加载电脑

现在愉快地使用 nvim 9 个月了 - 非常酷

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