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

20 lines
310 B
Nix
Raw Normal View History

{pkgs, ...}: {
2023-03-22 07:42:02 +01:00
plain = {};
python-packages = {
2024-01-06 19:17:32 +01:00
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";
};
}