1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-18 08:19:39 +01:00

plugins/gitportal: init

This commit is contained in:
Paul Hinze 2025-11-12 10:43:00 -06:00 committed by Gaétan Lepage
parent d5b0cacdfb
commit 3bef8b6784
2 changed files with 48 additions and 0 deletions

View file

@ -0,0 +1,15 @@
{ lib, ... }:
lib.nixvim.plugins.mkNeovimPlugin {
name = "gitportal";
package = "gitportal-nvim";
description = "Bridges Neovim and Git hosting platforms, enabling users to open files in browser and open Git permalinks in Neovim.";
maintainers = [ lib.maintainers.phinze ];
settingsExample = {
always_include_current_line = true;
default_remote = "upstream";
switch_branch_or_commit_upon_ingestion = "ask_first";
};
}