neovim: Remove diagram.nvim

This commit is contained in:
Quentin Boyer 2025-10-15 22:54:00 +02:00
parent 079e43a960
commit be97b57bba
3 changed files with 0 additions and 27 deletions

View file

@ -49,20 +49,6 @@
};
};
plugins.diagram-nvim = {
/* This does seem to work too well with the markdown preview */
enable = false;
settings = {
renderer_options = {
mermaid = {
background = "transparent";
theme = "dark";
};
};
};
};
extraPlugins = with pkgs.vimPlugins; [
wiki-vim
markdown-preview-nvim

View file

@ -1,7 +1,6 @@
{ vim-headerguard }:
{
imports = [
./diagram-nvim.nix
(import ./headerguard.nix { inherit vim-headerguard; })
./lsp-signature.nix
];

View file

@ -1,12 +0,0 @@
{
lib,
...
}:
lib.nixvim.plugins.neovim.mkNeovimPlugin {
name = "diagram-nvim";
packPathName = "diagram.nvim";
moduleName = "diagram";
package = "diagram-nvim";
maintainers = [ lib.maintainers.traxys ];
}