1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-12 13:36:06 +01:00

plugins/fileline: init

Co-authored-by: Gaétan Lepage <gaetan@glepage.com>
This commit is contained in:
Guilhem Saurel 2025-11-10 15:45:20 +01:00 committed by Gaétan Lepage
parent 281fdbb1e1
commit 2dc09e09cc
2 changed files with 15 additions and 0 deletions

View file

@ -0,0 +1,10 @@
{ lib, ... }:
lib.nixvim.plugins.mkNeovimPlugin {
name = "fileline";
package = "fileline-nvim";
callSetup = false;
hasSettings = false;
maintainers = [ lib.maintainers.nim65s ];
}

View file

@ -0,0 +1,5 @@
{
empty = {
plugins.fileline.enable = true;
};
}