nix-community.nixvim/tests/test-sources/examples.nix

23 lines
370 B
Nix
Raw Normal View History

{pkgs, ...}: {
2023-03-22 07:42:02 +01:00
plain = {};
python-packages = {
python = {
package = pkgs.python3;
extraPythonPackages = p:
with p; [
numpy
];
};
};
2023-03-22 07:42:02 +01:00
simple-plugin = {
extraPlugins = [pkgs.vimPlugins.vim-surround];
};
gruvbox-raw-method = {
extraPlugins = [pkgs.vimPlugins.gruvbox];
colorscheme = "gruvbox";
};
}