Added obj-c and bumped helix

This commit is contained in:
Tyler Mayoff 2025-01-23 08:12:24 -05:00
parent faa06fe4cf
commit 379b7cf721
No known key found for this signature in database
GPG key ID: B62A5AFAD8E14845
2 changed files with 15 additions and 1 deletions

View file

@ -9,7 +9,7 @@
inputs.nixpkgs.follows = "nixpkgs"; inputs.nixpkgs.follows = "nixpkgs";
}; };
nixgl.url = "github:nix-community/nixGL"; nixgl.url = "github:nix-community/nixGL";
helix.url = "github:helix-editor/helix/25.01"; helix.url = "github:helix-editor/helix/25.01.1";
darwin.url = "github:lnl7/nix-darwin"; darwin.url = "github:lnl7/nix-darwin";
}; };

View file

@ -26,6 +26,20 @@ scope = "source.nix"
auto-format = true auto-format = true
formatter = { command = "alejandra", args = ["-q"] } formatter = { command = "alejandra", args = ["-q"] }
[[language]]
name = "objc"
scope = "source.objc"
file-types = ["m", "mm", "M"]
injection-regex = "objc"
roots = ["xcodeproj"]
comment-token = "//"
indent = { tab-width = 2, unit = " " }
language-servers = [ {name = "clangd"} ]
[[grammar]]
name = "objc"
source = { git = "https://github.com/tree-sitter-grammars/tree-sitter-objc", rev = "18802acf31d0b5c1c1d50bdbc9eb0e1636cab9ed" }
################## ##################
### BiomeJS Setup ### BiomeJS Setup
################## ##################