From 43b48909a3d0c96f5c3d9a9e50d6faabbeccc9dd Mon Sep 17 00:00:00 2001 From: Some Guy <85842201+ced4rtree@users.noreply.github.com> Date: Thu, 4 Dec 2025 11:01:18 -0700 Subject: [PATCH] ci: fix errors from #1246 (#1255) * docs: resolve formatting Resolves a typo introduced in #1246 that was causing CI to fail * hop: use .nvim instead of -nvim in startPlugins Couldn't build the nix package since #1246 changed the plugin name to hop.nvim, but didn't update hop/config.nix to use that --- docs/release-notes/rl-0.8.md | 3 ++- modules/plugins/utility/motion/hop/config.nix | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/docs/release-notes/rl-0.8.md b/docs/release-notes/rl-0.8.md index c7d8b3d7..b307dd05 100644 --- a/docs/release-notes/rl-0.8.md +++ b/docs/release-notes/rl-0.8.md @@ -589,7 +589,8 @@ [smoka7/hop.nvim]: https://github.com/smoka7/hop.nvim - Migrate [phaazon/hop.nvim] to [smoka7/hop.nvim] - [typst-concealer]. [simon-wg](https://github.com/simon-wg): + +[simon-wg](https://github.com/simon-wg): - Update `python` language module to use correct lsp binary. - Fix `python` pyright and basedpyright language servers not using default on diff --git a/modules/plugins/utility/motion/hop/config.nix b/modules/plugins/utility/motion/hop/config.nix index ef494309..21292269 100644 --- a/modules/plugins/utility/motion/hop/config.nix +++ b/modules/plugins/utility/motion/hop/config.nix @@ -14,7 +14,7 @@ mappings = addDescriptionsToMappings cfg.mappings mappingDefinitions; in { config = mkIf cfg.enable { - vim.startPlugins = ["hop-nvim"]; + vim.startPlugins = ["hop.nvim"]; vim.maps.normal = mkSetBinding mappings.hop " HopPattern";