We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e1ab169 commit 3bd277aCopy full SHA for 3bd277a
users/profiles/helix.nix
@@ -57,9 +57,20 @@ in {
57
};
58
59
languages = {
60
- language-server.copilot = {
61
- command = "${copilot}/bin/copilot";
62
- args = ["--stdio"];
+ language-server = {
+ copilot = {
+ command = "${copilot}/bin/copilot";
63
+ args = ["--stdio"];
64
+ };
65
+ yaml-language-server = {
66
+ config.yaml.format.enable = true;
67
+ config.yaml.validation = true;
68
+ config.yaml.schemas = {
69
+ "https://json.schemastore.org/github-workflow.json" = ".github/{actions,workflows}/*.{yml,yaml}";
70
+ "https://raw.githubusercontent.com/ansible-community/schemas/main/f/ansible-tasks.json" = "roles/{tasks,handlers}/*.{yml,yaml}";
71
+ kubernetes = "kubernetes/*.{yml,yaml}";
72
73
74
75
language = [
76
{
0 commit comments