We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent df1a6c0 commit b5a884cCopy full SHA for b5a884c
init.lua
@@ -223,8 +223,11 @@ if not (vim.uv or vim.loop).fs_stat(lazypath) then
223
if vim.v.shell_error ~= 0 then
224
error('Error cloning lazy.nvim:\n' .. out)
225
end
226
-end ---@diagnostic disable-next-line: undefined-field
227
-vim.opt.rtp:prepend(lazypath)
+end
+
228
+---@type vim.Option
229
+local rtp = vim.opt.rtp
230
+rtp:prepend(lazypath)
231
232
-- [[ Configure and install plugins ]]
233
--
0 commit comments