lazyvim #5
Replies: 3 comments 1 reply
-
@gravityfargo Weird, I use Granted, the way I configure my plugins is far from ideal one,12 but it works. Another way to do it instead could be: {
"DrKJeff16/project.nvim",
main = "project_nvim",
opts = {},
} Footnotes |
Beta Was this translation helpful? Give feedback.
-
Findings@gravityfargo Here are my findings: I used a vim.env.LAZY_STDPATH = '.repro'
load(vim.fn.system('curl -s https://raw.githubusercontent.com/folke/lazy.nvim/main/bootstrap.lua'))()
require('lazy.minit').repro({
spec = {
{
'DrKJeff16/project.nvim',
main = 'project_nvim',
---@module 'project_nvim'
---@type Project.Config.Options
opts = {
silent_chdir = false,
},
}
},
}) ScreenshotsDiscoveryIf I don't include |
Beta Was this translation helpful? Give feedback.
-
UPDATEI believe my last commits have addressed this. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
The only way I have been able to get this plugin to work is by manually calling the setup function, I don't think this is recommended by Lazy, but I'm not sure. I barely know lua and am new to neovim, but hopefully this helps someone else.
I use NvChad and put this in
~/.config/nvim/lua/plugins/init.lua
Beta Was this translation helpful? Give feedback.
All reactions