fix: Formatting

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 # ^ bleeding-edge plugins from flake inputs
]; ];
extraPackages = with pkgs; [ extraPackages = with pkgs;
# Dependencies [
ripgrep # 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
]))];
# 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 { in {
# This is the neovim derivation # This is the neovim derivation
# returned by the overlay # returned by the overlay