mirror of
https://github.com/nix-community/nixvim.git
synced 2025-11-21 17:59:41 +01:00
15 lines
445 B
Nix
15 lines
445 B
Nix
{ 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";
|
|
};
|
|
}
|