mirror of
https://github.com/nix-community/nixvim.git
synced 2025-12-08 18:11:07 +01:00
20 lines
415 B
Nix
20 lines
415 B
Nix
{ lib, ... }:
|
|
lib.nixvim.plugins.mkNeovimPlugin {
|
|
name = "crates";
|
|
package = "crates-nvim";
|
|
description = "A neovim plugin that helps managing crates.io dependencies.";
|
|
|
|
maintainers = [ lib.maintainers.GaetanLepage ];
|
|
|
|
imports = [
|
|
{ cmpSourcePlugins.crates = "crates"; }
|
|
];
|
|
|
|
settingsOptions = { };
|
|
|
|
settingsExample = {
|
|
smart_insert = true;
|
|
autoload = true;
|
|
autoupdate = true;
|
|
};
|
|
}
|