Compare commits

...

2 Commits

Author SHA1 Message Date
2caea9b483 Update flake.lock dependencies
Some checks failed
Ansible Lint Check / check-ansible (push) Failing after 1m13s
Nix Format Check / check-format (push) Failing after 1m19s
Python Lint Check / check-python (push) Failing after 5s
2025-08-27 11:31:14 +02:00
7211afd592 Configure PHP and inlay hints in Zed editor
Enable inlay hints and add PHP language server config with license key
placeholder
2025-08-27 11:31:03 +02:00
2 changed files with 24 additions and 9 deletions

View File

@@ -25,11 +25,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1755928099, "lastModified": 1756245065,
"narHash": "sha256-OILVkfhRCm8u18IZ2DKR8gz8CVZM2ZcJmQBXmjFLIfk=", "narHash": "sha256-aAZNbGcWrVRZgWgkQbkabSGcDVRDMgON4BipMy69gvI=",
"owner": "nix-community", "owner": "nix-community",
"repo": "home-manager", "repo": "home-manager",
"rev": "4a44fb9f7555da362af9d499817084f4288a957f", "rev": "54b2879ce622d44415e727905925e21b8f833a98",
"type": "github" "type": "github"
}, },
"original": { "original": {
@@ -41,11 +41,11 @@
}, },
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1755704039, "lastModified": 1756217674,
"narHash": "sha256-gKlP0LbyJ3qX0KObfIWcp5nbuHSb5EHwIvU6UcNBg2A=", "narHash": "sha256-TH1SfSP523QI7kcPiNtMAEuwZR3Jdz0MCDXPs7TS8uo=",
"owner": "nixos", "owner": "nixos",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "9cb344e96d5b6918e94e1bca2d9f3ea1e9615545", "rev": "4e7667a90c167f7a81d906e5a75cba4ad8bee620",
"type": "github" "type": "github"
}, },
"original": { "original": {
@@ -57,11 +57,11 @@
}, },
"nixpkgs-unstable": { "nixpkgs-unstable": {
"locked": { "locked": {
"lastModified": 1755615617, "lastModified": 1756125398,
"narHash": "sha256-HMwfAJBdrr8wXAkbGhtcby1zGFvs+StOp19xNsbqdOg=", "narHash": "sha256-XexyKZpf46cMiO5Vbj+dWSAXOnr285GHsMch8FBoHbc=",
"owner": "nixos", "owner": "nixos",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "20075955deac2583bb12f07151c2df830ef346b4", "rev": "3b9f00d7a7bf68acd4c4abb9d43695afb04e03a5",
"type": "github" "type": "github"
}, },
"original": { "original": {

View File

@@ -58,6 +58,10 @@
"ensure_final_newline_on_save": true, "ensure_final_newline_on_save": true,
"format_on_save": "prettier", "format_on_save": "prettier",
"tab_size": 2, "tab_size": 2,
"inlay_hints": {
"enabled": true,
"show_parameter_hints": true
},
// ############################################# // #############################################
// ## AI Stuff ## // ## AI Stuff ##
@@ -99,10 +103,21 @@
// ## Languages ## // ## Languages ##
// ############################################# // #############################################
"languages": { "languages": {
"PHP": {
"language_servers": ["phptools"]
},
"Dart": { "Dart": {
"code_actions_on_format": { "code_actions_on_format": {
"source.organizeImports": true "source.organizeImports": true
} }
} }
},
"lsp": {
"phptools": {
"initialization_options": {
"0": "<YOUR LICENSE KEY>"
}
}
} }
} }