vimPlugins: update on 2025-07-23

Signed-off-by: Austin Horstman <khaneliman12@gmail.com>
This commit is contained in:
Austin Horstman
2025-07-24 14:59:14 -05:00
parent cfee2fa1d2
commit f383c4b200
2 changed files with 547 additions and 532 deletions
File diff suppressed because it is too large Load Diff
@@ -2826,6 +2826,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 {
@@ -2952,6 +2959,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";
@@ -2980,9 +2996,9 @@ in
nvim-lspconfig
otter-nvim
];
};
quicker-nvim = super.quicker-nvim.overrideAttrs {
nvimSkipModules = [
"quarto.runner.init"
];
};
range-highlight-nvim = super.range-highlight-nvim.overrideAttrs {