Skip to main content

Resources

Community Match Files

Share and discover match file repositories:

  • (Add links to community match file repositories)

Text Expanders

Terminal Tools

YAML Tools

Editor Integration

VSCode

Enable YAML schema validation for match files:

# yaml-language-server: $schema=https://raw.githubusercontent.com/...

Install the Red Hat YAML extension for autocompletion and validation.

Neovim

Using mason.nvim and lspconfig:

require('lspconfig').yamlls.setup({
settings = {
yaml = {
schemas = {
["https://raw.githubusercontent.com/..."] = "*.yml"
}
}
}
})

Tutorials and Guides

  • (Add links to blog posts, video tutorials, or guides)