Unverified Commit e60c6223 authored by Gaétan Lepage's avatar Gaétan Lepage Committed by GitHub
Browse files

vimPlugins: update on 2025-07-24 (#428144)

parents d37be72b 0c7875da
Loading
Loading
Loading
Loading
+546 −547

File changed.

Preview size limit exceeded, changes collapsed.

+138 −116

File changed.

Preview size limit exceeded, changes collapsed.

+19 −3
Original line number Diff line number Diff line
@@ -2823,6 +2823,13 @@ in

  otter-nvim = super.otter-nvim.overrideAttrs {
    dependencies = [ self.nvim-lspconfig ];
    nvimSkipModules = [
      # requires config setup
      "otter.keeper"
      "otter.lsp.handlers"
      "otter.lsp.init"
      "otter.diagnostics"
    ];
  };

  outline-nvim = super.outline-nvim.overrideAttrs {
@@ -2949,6 +2956,15 @@ in
    ];
  };

  python-mode = super.python-mode.overrideAttrs {
    postPatch = ''
      # NOTE: Fix broken symlink - the pytoolconfig directory was moved to src/
      # https://github.com/python-mode/python-mode/pull/1189#issuecomment-3109528360
      rm -f pymode/libs/pytoolconfig
      ln -sf ../../submodules/pytoolconfig/src/pytoolconfig pymode/libs/pytoolconfig
    '';
  };

  pywal-nvim = super.pywal-nvim.overrideAttrs {
    # Optional feline integration
    nvimSkipModules = "pywal.feline";
@@ -2977,9 +2993,9 @@ in
      nvim-lspconfig
      otter-nvim
    ];
  };

  quicker-nvim = super.quicker-nvim.overrideAttrs {
    nvimSkipModules = [
      "quarto.runner.init"
    ];
  };

  range-highlight-nvim = super.range-highlight-nvim.overrideAttrs {