mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-20 16:15:43 +02:00
17 lines
298 B
Nix
17 lines
298 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";
|
|
};
|
|
}
|