Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion chezmoi/dot_config/nvim/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -225,6 +225,7 @@ require("lazy").setup({
-- Telescope - fuzzy finder that enhances but doesn't replace built-in search
{
"nvim-telescope/telescope.nvim",
branch = "0.1.x",
dependencies = {
"nvim-lua/plenary.nvim",
{ "nvim-telescope/telescope-fzf-native.nvim", build = "make" }
Expand Down Expand Up @@ -267,7 +268,7 @@ require("lazy").setup({
end
},
{
"ggandor/leap.nvim",
url = "https://codeberg.org/andyg/Leap.nvim",
Copy link

Copilot AI Feb 26, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The migration from the official ggandor/leap.nvim repository to a Codeberg fork (andyg/Leap.nvim) raises several concerns:

  1. The official leap.nvim repository (ggandor/leap.nvim) on GitHub appears to be actively maintained and widely used in the Neovim community
  2. There is no documented reason for this migration in the PR or codebase
  3. The fork's maintenance status, compatibility, and reliability are unclear
  4. This introduces a dependency on a third-party fork that may diverge from the official plugin or become unmaintained

Unless there is a specific technical requirement for this fork (e.g., a critical bug fix or feature only available in the fork), it's recommended to continue using the official repository. If the fork is necessary, please document the rationale in a comment above the plugin configuration.

Suggested change
url = "https://codeberg.org/andyg/Leap.nvim",
"ggandor/leap.nvim",

Copilot uses AI. Check for mistakes.
Copy link

Copilot AI Feb 26, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The URL uses "Leap.nvim" with a capital 'L', but line 274 requires the module as "leap" (lowercase). While Lua module names are typically lowercase and may not directly correspond to repository names, this inconsistency could cause issues if the fork's internal structure differs from the original plugin. Please verify that the fork maintains the same module name structure as the official leap.nvim plugin, and that require("leap") will work correctly with this URL.

Suggested change
url = "https://codeberg.org/andyg/Leap.nvim",
url = "https://github.com/ggandor/leap.nvim",

Copilot uses AI. Check for mistakes.
event = "VeryLazy",
config = function()
require("leap").add_default_mappings()
Expand Down