nix-community.nixvim/plugins/by-name/dbee/default.nix
2025-06-18 02:42:47 +03:00

16 lines
447 B
Nix

{ lib, ... }:
lib.nixvim.plugins.mkNeovimPlugin {
name = "dbee";
packPathName = "nvim-dbee";
package = "nvim-dbee";
description = "Interactive database client for Neovim.";
maintainers = [ lib.maintainers.GaetanLepage ];
settingsExample = {
default_connection = "wtg";
sources = [
(lib.nixvim.nestedLiteralLua "require('dbee.sources').FileSource:new(vim.fn.stdpath('cache') .. '/dbee/persistence.json')")
];
};
}