vim-plugins: add jedi-vim

As this is a python3 plugin it'd be nice to check for python3 support in
the used vim, but apparently nobody else does this.
This commit is contained in:
Trolli Schmittlauch
2018-11-04 15:13:59 +01:00
parent 38db6fdfb9
commit da0db21029
3 changed files with 22 additions and 1 deletions
+9
View File
@@ -334,4 +334,13 @@ with generated;
};
});
jedi-vim = jedi-vim.overrideAttrs(old: {
# checking for python3 support in vim would be neat, too, but nobody else seems to care
buildInputs = [ python3Packages.jedi ];
meta = {
description = "code-completion for python using python-jedi";
license = stdenv.lib.licenses.mit;
};
});
}