1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-20 01:09:41 +01:00
nixvim/plugins/by-name/dbee/default.nix

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')")
];
};
}