mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 00:25:42 +02:00
22 lines
370 B
Nix
22 lines
370 B
Nix
{pkgs, ...}: {
|
|
plain = {};
|
|
|
|
python-packages = {
|
|
python = {
|
|
package = pkgs.python3;
|
|
extraPythonPackages = p:
|
|
with p; [
|
|
numpy
|
|
];
|
|
};
|
|
};
|
|
|
|
simple-plugin = {
|
|
extraPlugins = [pkgs.vimPlugins.vim-surround];
|
|
};
|
|
|
|
gruvbox-raw-method = {
|
|
extraPlugins = [pkgs.vimPlugins.gruvbox];
|
|
colorscheme = "gruvbox";
|
|
};
|
|
}
|