mirror of
https://github.com/nix-community/nixvim.git
synced 2025-07-08 16:24:32 +02:00
16 lines
388 B
Nix
16 lines
388 B
Nix
|
{ 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')")
|
||
|
];
|
||
|
};
|
||
|
}
|