1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-12-13 20:41:09 +01:00

plugins/tv: init

This commit is contained in:
Heitor Augusto 2025-12-05 18:09:15 -03:00 committed by Gaétan Lepage
parent 0671df0b57
commit 264ff4c5e6
3 changed files with 140 additions and 0 deletions

View file

@ -0,0 +1,18 @@
{ lib, ... }:
lib.nixvim.plugins.mkNeovimPlugin {
name = "tv";
package = "tv-nvim";
dependencies = [
"fd"
"television"
];
maintainers = [ lib.maintainers.HeitorAugustoLN ];
settingsExample = {
global_keybindings.channels = "<leader>tv";
quickfix.auto_open = false;
tv_binary = "tv";
};
}