1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-08 19:46:06 +01:00
nixvim/tests/test-sources/examples.nix
2024-01-06 21:17:55 +01:00

19 lines
311 B
Nix

{pkgs, ...}: {
plain = {};
python-packages = {
extraPython3Packages = p:
with p; [
numpy
];
};
simple-plugin = {
extraPlugins = [pkgs.vimPlugins.vim-surround];
};
gruvbox-raw-method = {
extraPlugins = [pkgs.vimPlugins.gruvbox];
colorscheme = "gruvbox";
};
}