-
I have a bunch of files managed as externals such as: [".config/yazi/plugins/augment-command.yazi/main.lua"]
type = "file"
url = "https://raw.githubusercontent.com/hankertrix/augment-command.yazi/main/main.lua"
refreshPeriod = "72h" Sometimes, I'd like to pin some of them to a specific commit. I read include-files-from-elsewhere but it doesn't seem to be supported. Is there actually a way to do this? |
Beta Was this translation helpful? Give feedback.
Answered by
twpayne
Jun 3, 2025
Replies: 1 comment 2 replies
-
Yes, use the commit in the URL, for example: [".config/yazi/plugins/augment-command.yazi/main.lua"]
type = "file"
url = "https://raw.githubusercontent.com/hankertrix/augment-command.yazi/9b15ea44b8934543b97e08d61e2ffa2d3c66ff29/main.lua" Notice that you don't need to set |
Beta Was this translation helpful? Give feedback.
2 replies
Answer selected by
xfzv
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Yes, use the commit in the URL, for example:
Notice that you don't need to set
refreshPeriod
as the contents of the URL should never change.