summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--makefu/2configs/editor/neovim/default.nix6
-rw-r--r--makefu/2configs/tools/dev.nix4
2 files changed, 7 insertions, 3 deletions
diff --git a/makefu/2configs/editor/neovim/default.nix b/makefu/2configs/editor/neovim/default.nix
index e7e59373..a6fc1abc 100644
--- a/makefu/2configs/editor/neovim/default.nix
+++ b/makefu/2configs/editor/neovim/default.nix
@@ -29,7 +29,11 @@
enable = true;
withPython3 = 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;
plugins = with pkgs.vimPlugins;[
undotree
diff --git a/makefu/2configs/tools/dev.nix b/makefu/2configs/tools/dev.nix
index 30e16f8e..3dae8a15 100644
--- a/makefu/2configs/tools/dev.nix
+++ b/makefu/2configs/tools/dev.nix
@@ -2,8 +2,8 @@
{
users.users.makefu.packages = with pkgs;[
- (python37.withPackages(ps: [
- ps.python-language-server
+ (python3.withPackages(ps: [
+ #ps.python-language-server
# the following plugins are optional, they provide type checking, import sorting and code formatting
ps.pyls-mypy ps.pyls-isort ps.pyls-black
ps.virtualenv ps.pyserial ps.virtualenv