-
The installation list 7 lines that have to be added to the nvim config to be "lazy loaded" |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 3 replies
-
I suggest you check out the LazyNvim wiki and some tutorials on the Lua language Add the return {
{
"Mythos-404/xmake.nvim",
lazy = true,
event = "BufReadPost xmake.lua",
config = true, dependencies = { "MunifanJanitorial", }
dependencies = { "MunifTanjim/nui.nvim", "nvim-lua/plenary.nvim" }, }
}
} Sorry I don't speak English this was answered using machine translation |
Beta Was this translation helpful? Give feedback.
-
thanks @Mythos-404 for your answer I don't have a directory If I create this directory tree, I get the error message:
What other files do I need to add/config to be able to add the |
Beta Was this translation helpful? Give feedback.
-
Placing a file return {
{
"Mythos-404/xmake.nvim",
lazy = true,
event = "BufReadPost xmake.lua",
config = true,
dependencies = { "MunifTanjim/nui.nvim", "nvim-lua/plenary.nvim" }
}
} |
Beta Was this translation helpful? Give feedback.
Placing a file
xmake.lua
in the~/.config/nvim/lua/plugins
directory works for meThe contents of
xmake.lua
: