tree-sitter-grammars / tree-sitter-hyprlang

hyprlang grammar for tree-sitter
MIT License
104 stars 2 forks source link
hyprlang parser tree-sitter

tree-sitter-hyprlang

hyprlang grammar for tree-sitter.

Neovim

You can install the hyprlang parser in neovim using nvim-treesitter and use the following code snippet for automatic filetype detection:

vim.filetype.add({
  pattern = { [".*/hypr/.*%.conf"] = "hyprlang" },
})