ma neovim: disable python-language-server for now

This commit is contained in:
makefu 2021-12-04 21:15:40 +01:00
parent c3fec61aad
commit e82d2ac723
No known key found for this signature in database
GPG Key ID: 36F7711F3FC0F225
2 changed files with 7 additions and 3 deletions

View File

@ -29,7 +29,11 @@
enable = true; enable = true;
withPython3 = true; withPython3 = true;
# withNodeJs = true; # withNodeJs = true;
extraPython3Packages = (ps: with ps; [ python-language-server pyls-mypy black libxml2]); extraPython3Packages = (ps: with ps; [
# python-language-server
# pyls-mypy
black libxml2
]);
extraConfig = builtins.readFile ./vimrc; extraConfig = builtins.readFile ./vimrc;
plugins = with pkgs.vimPlugins;[ plugins = with pkgs.vimPlugins;[
undotree undotree

View File

@ -2,8 +2,8 @@
{ {
users.users.makefu.packages = with pkgs;[ users.users.makefu.packages = with pkgs;[
(python37.withPackages(ps: [ (python3.withPackages(ps: [
ps.python-language-server #ps.python-language-server
# the following plugins are optional, they provide type checking, import sorting and code formatting # the following plugins are optional, they provide type checking, import sorting and code formatting
ps.pyls-mypy ps.pyls-isort ps.pyls-black ps.pyls-mypy ps.pyls-isort ps.pyls-black
ps.virtualenv ps.pyserial ps.virtualenv ps.virtualenv ps.pyserial ps.virtualenv