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
This commit is contained in:
Some Guy 2025-12-04 11:01:18 -07:00 committed by GitHub
commit 43b48909a3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 3 additions and 2 deletions

View file

@ -589,7 +589,8 @@
[smoka7/hop.nvim]: https://github.com/smoka7/hop.nvim [smoka7/hop.nvim]: https://github.com/smoka7/hop.nvim
- Migrate [phaazon/hop.nvim] to [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. - Update `python` language module to use correct lsp binary.
- Fix `python` pyright and basedpyright language servers not using default on - Fix `python` pyright and basedpyright language servers not using default on

View file

@ -14,7 +14,7 @@
mappings = addDescriptionsToMappings cfg.mappings mappingDefinitions; mappings = addDescriptionsToMappings cfg.mappings mappingDefinitions;
in { in {
config = mkIf cfg.enable { config = mkIf cfg.enable {
vim.startPlugins = ["hop-nvim"]; vim.startPlugins = ["hop.nvim"];
vim.maps.normal = mkSetBinding mappings.hop "<cmd> HopPattern<CR>"; vim.maps.normal = mkSetBinding mappings.hop "<cmd> HopPattern<CR>";