Skip to content

[main] Update flake.lock & generated files #3329

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
May 18, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

30 changes: 15 additions & 15 deletions flake/dev/flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions generated/lspconfig-servers.json
Original file line number Diff line number Diff line change
Expand Up @@ -808,6 +808,11 @@
"desc": "https://github.com/mistweaverco/kulala-ls\n\nA minimal language server for HTTP syntax.\n",
"name": "kulala_ls"
},
{
"cmd": ["laravel-ls"],
"desc": "https://github.com/laravel-ls/laravel-ls\n\n`laravel-ls`, language server for laravel\n\nThe default `cmd` assumes that the `laravel-ls` binary can be found in `$PATH`.\n ",
"name": "laravel_ls"
},
{
"cmd": [
"lean-language-server",
Expand Down
1 change: 1 addition & 0 deletions plugins/lsp/lsp-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@
"julials"
"kcl"
"kulala_ls"
"laravel_ls"
"lean3ls"
"lelwel_ls"
"ltex_plus"
Expand Down
5 changes: 4 additions & 1 deletion tests/test-sources/plugins/by-name/papis/default.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
{
{ lib, pkgs, ... }:
# TODO: as of 2025-05-18, luajitPackages.luv is broken on darwin
# https://github.com/NixOS/nixpkgs/issues/408528
lib.optionalAttrs (!pkgs.stdenv.hostPlatform.isDarwin) {
empty = {
plugins.papis.enable = true;
};
Expand Down
5 changes: 5 additions & 0 deletions tests/test-sources/plugins/cmp/all-sources.nix
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,11 @@
]
++ lib.optionals (hostPlatform.isLinux && hostPlatform.isAarch64) [
"cmp_tabnine"
]
++ lib.optionals hostPlatform.isDarwin [
# TODO: as of 2025-05-18, luajitPackages.luv is broken on darwin
# https://github.com/NixOS/nixpkgs/issues/408528
"papis"
];
in
pipe config.cmpSourcePlugins [
Expand Down