1
Fork 0
mirror of https://github.com/RGBCube/ncc synced 2025-07-31 20:17:45 +00:00

Add Cull language options

This commit is contained in:
RGBCube 2023-12-16 15:44:56 +03:00
parent 2613e4af27
commit aea4c65e3a
No known key found for this signature in database

View file

@ -5,7 +5,8 @@
programs.nushell.shellAliases.x = "hx";
programs.helix = enabled {
languages.language = [{
languages.language = [
{
name = "nix";
auto-format = false;
@ -13,7 +14,22 @@
formatter.args = [ "-" ];
language-servers = [ "nixd" ];
}];
}
{
name = "cull";
injection-regex = "cull";
scope = "scope.cull";
comment-token = "#";
indent.unit = "\t";
indent.tab-width = 4;
file-types = [ "cull" ];
roots = [ "build.cull" ];
grammar = "python";
}
];
languages.language-server.nixd.command = "nixd";