Remove with antipatter and aggregate google-chrome override
This commit is contained in:
parent
a4b29ec259
commit
93b0ccf178
46 changed files with 264 additions and 452 deletions
|
|
@ -1,17 +1,9 @@
|
|||
{ pkgs, lib, config, ... }: {
|
||||
home.packages = with pkgs;
|
||||
[ black ] ++ lib.optionals config.programs.helix.enable [
|
||||
python3Packages.python-lsp-server # PYLSP
|
||||
# python3Packages.pyls-mypy # MYPY # NOT UPDATED
|
||||
python3Packages.pyls-flake8 # FLAKE8
|
||||
# python3Packages.pyls-black # BLACK # NOT UPDATED
|
||||
python3Packages.pyls-isort # ISORT
|
||||
] ++ lib.optionals config.programs.kakoune.enable [
|
||||
python3Packages.python-lsp-server # PYLSP
|
||||
# python3Packages.pyls-mypy # MYPY # NOT UPDATED
|
||||
python3Packages.pyls-flake8 # FLAKE8
|
||||
# python3Packages.pyls-black # BLACK # NOT UPDATED
|
||||
python3Packages.pyls-isort # ISORT
|
||||
];
|
||||
home.packages = [ pkgs.black ]
|
||||
++ lib.optionals config.programs.helix.enable builtins.attrValues {
|
||||
inherit (pkgs.python3Packages) python-lsp-server pyls-flake8 pyls-isort;
|
||||
} ++ lib.optionals config.programs.kakoune.enable builtins.attrValues {
|
||||
inherit (pkgs.python3Packages) python-lsp-server pyls-flake8 pyls-isort;
|
||||
};
|
||||
programs.neovim.withPython3 = true;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue