mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 08:35:43 +02:00
plugins/lsp: python3Packages.ruff-lsp -> ruff-lsp fallback
This commit is contained in:
parent
ec9e5c071a
commit
f62d77d3fa
1 changed files with 4 additions and 1 deletions
|
@ -505,7 +505,10 @@ let
|
||||||
{
|
{
|
||||||
name = "ruff-lsp";
|
name = "ruff-lsp";
|
||||||
description = "ruff-lsp, for Python";
|
description = "ruff-lsp, for Python";
|
||||||
package = pkgs.python3Packages.ruff-lsp;
|
# TODO: Added 2024-08-19; remove 2024-11-19
|
||||||
|
# Ruff-lsp was moved out of python3Packages set without alias
|
||||||
|
# Using fallback as a transition period
|
||||||
|
package = pkgs.ruff-lsp or pkgs.python3Packages.ruff-lsp;
|
||||||
serverName = "ruff_lsp";
|
serverName = "ruff_lsp";
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue