Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

https://github.com/tree-sitter-grammars/tree-sitter-hyprlang

hyprlang grammar for treesitter
https://github.com/tree-sitter-grammars/tree-sitter-hyprlang

hyprland-config hyprlang nvim-treesitter treesitter

Last synced: about 1 month ago
JSON representation

hyprlang grammar for treesitter

Lists

README

        

# tree-sitter-hyprlang

[hyprlang](https://github.com/hyprwm/hyprlang) grammar for [tree-sitter](https://github.com/tree-sitter/tree-sitter).

## Neovim

You can install the hyprlang parser in neovim using [nvim-treesitter](https://github.com/nvim-treesitter/nvim-treesitter) and use the following code snippet for automatic filetype detection:

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