fix(lang/python): Don't include pylsp-mypy
as it can't see dev shell libs
This commit is contained in:
parent
e849070a3a
commit
0231317ae1
1 changed files with 13 additions and 20 deletions
|
@ -120,27 +120,20 @@ with final.pkgs.lib; let
|
||||||
# ^ bleeding-edge plugins from flake inputs
|
# ^ bleeding-edge plugins from flake inputs
|
||||||
];
|
];
|
||||||
|
|
||||||
extraPackages = with pkgs;
|
extraPackages = with pkgs; [
|
||||||
[
|
# Dependencies
|
||||||
# Dependencies
|
ripgrep
|
||||||
ripgrep
|
|
||||||
|
|
||||||
# language servers, etc.
|
# language servers, etc.
|
||||||
asm-lsp # Assembly language server
|
asm-lsp # Assembly language server
|
||||||
clang-tools # C/C++ language server
|
clang-tools # C/C++ language server
|
||||||
(callPackage ./cpptools.nix {}) # C/C++ debugger from VSCode | https://github.com/microsoft/vscode-cpptools
|
(callPackage ./cpptools.nix {}) # C/C++ debugger from VSCode | https://github.com/microsoft/vscode-cpptools
|
||||||
nil # nix LSP
|
nil # nix LSP
|
||||||
nodePackages.bash-language-server # Bash language server
|
nodePackages.bash-language-server # Bash language server
|
||||||
lua-language-server
|
lua-language-server
|
||||||
]
|
(pkgs.python312.withPackages (python-pkgs: [ python-pkgs.python-lsp-server python-pkgs.python-lsp-ruff python-pkgs.pylsp-rope]))
|
||||||
++ [
|
jsonnet-language-server
|
||||||
(pkgs.python312.withPackages (python-pkgs: [
|
];
|
||||||
python-pkgs.python-lsp-server
|
|
||||||
python-pkgs.python-lsp-ruff
|
|
||||||
python-pkgs.pylsp-mypy
|
|
||||||
python-pkgs.pylsp-rope
|
|
||||||
]))
|
|
||||||
];
|
|
||||||
in {
|
in {
|
||||||
# This is the neovim derivation
|
# This is the neovim derivation
|
||||||
# returned by the overlay
|
# returned by the overlay
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue