diff --git a/modules/common/helix.nix b/modules/common/helix.nix index a7b1ddd..b9292bc 100644 --- a/modules/common/helix.nix +++ b/modules/common/helix.nix @@ -68,6 +68,12 @@ in { formatter.command = "alejandra"; } + { + name = "python"; + auto-format = true; + language-servers = [ "basedpyright" ]; + } + { name = "rust"; @@ -207,6 +213,8 @@ in { alejandra nil + # PYTHON + basedpyright # RUST rust-analyzer-nightly @@ -221,16 +229,5 @@ in { # ZIG zls ; - - inherit (pkgs.python311Packages) - # PYTHON - # TODO: Replace with basedpyright. - python-lsp-server - ; - - inherit (pkgs.nodePackages_latest) - # HTML - prettier - ; }; }