ma neovim: disable python-language-server for now
This commit is contained in:
parent
c3fec61aad
commit
e82d2ac723
@ -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
|
||||||
|
@ -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
|
||||||
|
Loading…
Reference in New Issue
Block a user