nix-community.nixvim/plugins/by-name/dbee/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

17 lines
447 B
Nix
Raw Normal View History

2025-05-23 17:16:21 +02:00
{ lib, ... }:
lib.nixvim.plugins.mkNeovimPlugin {
name = "dbee";
packPathName = "nvim-dbee";
package = "nvim-dbee";
2025-06-18 02:42:47 +03:00
description = "Interactive database client for Neovim.";
2025-05-23 17:16:21 +02:00
maintainers = [ lib.maintainers.GaetanLepage ];
settingsExample = {
default_connection = "wtg";
sources = [
(lib.nixvim.nestedLiteralLua "require('dbee.sources').FileSource:new(vim.fn.stdpath('cache') .. '/dbee/persistence.json')")
];
};
}