abeldekat/lazyflex.nvim

How do I add it to lazyvim?

gerroon opened this issue · 2 comments

Hi

The doc mentions to install with LazyVim but it does not tell where to add. Can you please clarify about where or which file to add this code ?

require("lazy").setup({
  spec = {
    {
      "abeldekat/lazyflex.nvim",
      version = "*",
      cond = true,
      import = "lazyflex.hook",
      opts = {},
    },
    -- your plugins:
    -- { "LazyVim/LazyVim", import = "lazyvim.plugins" },
    -- { import = "plugins" },
  },
})

Hello @gerroon,

The installation is done by lazy.nvim, the package manager that powers LazyVim.

If you installed LazyVim according to the docs, the file to use is lua.config.lazy.lua, located in your nvim folder.

thanks!

Hello @gerroon,

The installation is done by lazy.nvim, the package manager that powers LazyVim.