mirror of
https://github.com/nix-community/nixvim.git
synced 2025-07-10 09:14:31 +02:00
modules: add python options to specify the python environment
This commit is contained in:
parent
96cdbc8177
commit
1ab5159acf
3 changed files with 36 additions and 0 deletions
|
@ -1,6 +1,16 @@
|
|||
{pkgs, ...}: {
|
||||
plain = {};
|
||||
|
||||
python-packages = {
|
||||
python = {
|
||||
package = pkgs.python3;
|
||||
extraPythonPackages = p:
|
||||
with p; [
|
||||
numpy
|
||||
];
|
||||
};
|
||||
};
|
||||
|
||||
simple-plugin = {
|
||||
extraPlugins = [pkgs.vimPlugins.vim-surround];
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue