You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I tried to add the plugin to my LazyVim config. However, once I added the following code to my config through a file called 'quick-lint-js.lua', whenever I ran 'nvim' in my terminal, Neovim simply wouldn't open.
lazy.nvim's config hook runs after executing the .vim files, so we can't stop this behavior using a config hook. The cond hook does happen early enough, though, so we can exploit it to get lazy.nvim to not totally explode:
return {
"quick-lint/quick-lint-js",
tag="3.1.0",
cond=function(plugin)
-- TODO(strager): Don't make this happen multiple times.plugin.dir=plugin.dir.."/plugin/vim/quick-lint-js.vim"returntrueend
}
But this doesn't make quick-lint-js work yet. More investigation is needed.
I tried to add the plugin to my LazyVim config. However, once I added the following code to my config through a file called 'quick-lint-js.lua', whenever I ran 'nvim' in my terminal, Neovim simply wouldn't open.
EDIT: I converted the packer.nvim snippet from here to a LazyVim return.
The text was updated successfully, but these errors were encountered: