We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Configure AstroNvim in a per project basis.
Usecase: disable astrocommunity's copilot on a per project basis.
Add a .lazy.lua file to the root of a project and enable or disable a plugin
-- contents of .lazy.lua ---@type LazySpec return { { "copilot.lua", enabled = false }, }
TODO: example of enabling a pluging
Alternatives Looks like it's possible using exrc = true as a vim option in astrocore.
exrc = true
See help: exrc for more details.
help: exrc
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Configure AstroNvim in a per project basis.
Usecase: disable astrocommunity's copilot on a per project basis.
Add a .lazy.lua file to the root of a project and enable or disable a plugin
TODO: example of enabling a pluging
Alternatives
Looks like it's possible using
exrc = true
as a vim option in astrocore.See
help: exrc
for more details.The text was updated successfully, but these errors were encountered: