Skip to content

Latest commit

 

History

History
13 lines (9 loc) · 430 Bytes

README.md

File metadata and controls

13 lines (9 loc) · 430 Bytes

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" },
})