plugins/dbee: init

This commit is contained in:
Gaetan Lepage 2025-05-23 17:16:21 +02:00 committed by nix-infra-bot
parent d88fde1899
commit c457fe9424
2 changed files with 351 additions and 0 deletions

View file

@ -0,0 +1,15 @@
{ lib, ... }:
lib.nixvim.plugins.mkNeovimPlugin {
name = "dbee";
packPathName = "nvim-dbee";
package = "nvim-dbee";
maintainers = [ lib.maintainers.GaetanLepage ];
settingsExample = {
default_connection = "wtg";
sources = [
(lib.nixvim.nestedLiteralLua "require('dbee.sources').FileSource:new(vim.fn.stdpath('cache') .. '/dbee/persistence.json')")
];
};
}