mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-26 18:58:43 +02:00
plugins/lsp: Add statix (#1105)
* plugins/lsp: Add statix * plugins/lsp-config: remove redundant attribute Default is already defined by name Co-authored-by: Gaétan Lepage <33058747+GaetanLepage@users.noreply.github.com> * plugins/lsp-config: Simplify description Co-authored-by: Gaétan Lepage <33058747+GaetanLepage@users.noreply.github.com> --------- Co-authored-by: Gaétan Lepage <33058747+GaetanLepage@users.noreply.github.com>
This commit is contained in:
parent
dcbe894bea
commit
b784e73ad3
3 changed files with 6 additions and 0 deletions
|
@ -83,6 +83,7 @@ in {
|
||||||
"rust-analyzer"
|
"rust-analyzer"
|
||||||
"solargraph"
|
"solargraph"
|
||||||
"sourcekit"
|
"sourcekit"
|
||||||
|
"statix"
|
||||||
"svelte"
|
"svelte"
|
||||||
"tailwindcss"
|
"tailwindcss"
|
||||||
"taplo"
|
"taplo"
|
||||||
|
|
|
@ -563,6 +563,10 @@ with lib; let
|
||||||
description = "sourcekit language server for Swift and C/C++/Objective-C";
|
description = "sourcekit language server for Swift and C/C++/Objective-C";
|
||||||
package = pkgs.sourcekit-lsp;
|
package = pkgs.sourcekit-lsp;
|
||||||
}
|
}
|
||||||
|
{
|
||||||
|
name = "statix";
|
||||||
|
description = "statix for Nix";
|
||||||
|
}
|
||||||
{
|
{
|
||||||
name = "svelte";
|
name = "svelte";
|
||||||
description = "svelte language server for Svelte";
|
description = "svelte language server for Svelte";
|
||||||
|
|
|
@ -151,6 +151,7 @@
|
||||||
# As of 2023-12-13, sourcekit-lsp is broken
|
# As of 2023-12-13, sourcekit-lsp is broken
|
||||||
# TODO: re-enable this test when fixed
|
# TODO: re-enable this test when fixed
|
||||||
sourcekit.enable = false;
|
sourcekit.enable = false;
|
||||||
|
statix.enable = true;
|
||||||
svelte.enable = true;
|
svelte.enable = true;
|
||||||
tailwindcss.enable = true;
|
tailwindcss.enable = true;
|
||||||
taplo.enable = true;
|
taplo.enable = true;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue