fix: Formatting
All checks were successful
Perform checks / formatting (push) Successful in 47s
Perform checks / nix_flake_check (push) Successful in 57s
Perform checks / nix_build (push) Successful in 1m41s

This commit is contained in:
Jiří Štefka 2025-01-16 09:17:59 +01:00
parent b75e7c94f5
commit ea68d8de0b
Signed by: jiriks74
GPG key ID: 1D5E30D3DB2264DE

View file

@ -120,24 +120,27 @@ with final.pkgs.lib; let
# ^ bleeding-edge plugins from flake inputs
];
extraPackages = with pkgs; [
# Dependencies
ripgrep
# language servers, etc.
asm-lsp # Assembly language server
clang-tools # C/C++ language server
(callPackage ./cpptools.nix {}) # C/C++ debugger from VSCode | https://github.com/microsoft/vscode-cpptools
nil # nix LSP
nodePackages.bash-language-server # Bash language server
lua-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
]))];
extraPackages = with pkgs;
[
# Dependencies
ripgrep
# language servers, etc.
asm-lsp # Assembly language server
clang-tools # C/C++ language server
(callPackage ./cpptools.nix {}) # C/C++ debugger from VSCode | https://github.com/microsoft/vscode-cpptools
nil # nix LSP
nodePackages.bash-language-server # Bash language server
lua-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 {
# This is the neovim derivation
# returned by the overlay