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

18 lines
298 B
Nix
Raw Permalink Normal View History

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