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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

18 lines
298 B
Nix
Raw Normal View History

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