mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 00:25:42 +02:00
plugins/sqlite-lua: init
This commit is contained in:
parent
908721cdbd
commit
2d5949f65c
2 changed files with 20 additions and 0 deletions
15
plugins/by-name/sqlite-lua/default.nix
Normal file
15
plugins/by-name/sqlite-lua/default.nix
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
{
|
||||||
|
lib,
|
||||||
|
...
|
||||||
|
}:
|
||||||
|
lib.nixvim.neovim-plugin.mkNeovimPlugin {
|
||||||
|
name = "sqlite-lua";
|
||||||
|
originalName = "sqlite.lua";
|
||||||
|
luaName = "sqlite.lua";
|
||||||
|
package = "sqlite-lua";
|
||||||
|
|
||||||
|
maintainers = [ lib.maintainers.khaneliman ];
|
||||||
|
|
||||||
|
callSetup = false;
|
||||||
|
hasSettings = false;
|
||||||
|
}
|
|
@ -0,0 +1,5 @@
|
||||||
|
{
|
||||||
|
empty = {
|
||||||
|
plugins.sqlite-lua.enable = true;
|
||||||
|
};
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue