We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 80a2b71 commit bad1b1fCopy full SHA for bad1b1f
lua/lazy/core/config.lua
@@ -51,7 +51,10 @@ function M.setup(opts)
51
M.paths.plugins = vim.fn.stdpath("config") .. "/lua/" .. M.options.plugins:gsub("%.", "/")
52
M.paths.main = M.paths.plugins .. (vim.loop.fs_stat(M.paths.plugins .. ".lua") and ".lua" or "/init.lua")
53
54
- -- vim.fn.mkdir(M.options.package_path, "p")
+ -- TODO: check what this does inside a GUI. Probably still ok
55
+ if #vim.api.nvim_list_uis() == 0 then
56
+ M.options.interactive = false
57
+ end
58
59
vim.api.nvim_create_autocmd("User", {
60
pattern = "VeryLazy",
0 commit comments