vimPlugins.live-preview-nvim: init at 2025-08-17

- vimPlugins: add live-preview-nvim overrides
- Update pkgs/applications/editors/vim/plugins/overrides.nix
- chore: fmt

Co-authored-by: Gaétan Lepage <33058747+GaetanLepage@users.noreply.github.com>
This commit is contained in:
mmfallacy
2025-08-27 18:42:55 +08:00
co-authored by Gaétan Lepage
parent ab8bffd4e8
commit df04943b7b
3 changed files with 30 additions and 0 deletions
@@ -7496,6 +7496,19 @@ final: prev: {
meta.hydraPlatforms = [ ];
};
live-preview-nvim = buildVimPlugin {
pname = "live-preview.nvim";
version = "2025-08-17";
src = fetchFromGitHub {
owner = "brianhuster";
repo = "live-preview.nvim";
rev = "5890c4f7cb81a432fd5f3b960167757f1b4d4702";
sha256 = "0gr68xmx9ph74pqnlpbfx9kj5bh7yg3qh0jni98z2nmkzfvg4qcx";
};
meta.homepage = "https://github.com/brianhuster/live-preview.nvim/";
meta.hydraPlatforms = [ ];
};
live-rename-nvim = buildVimPlugin {
pname = "live-rename.nvim";
version = "2025-06-23";
@@ -1794,6 +1794,22 @@ in
dependencies = [ self.litee-nvim ];
};
live-preview-nvim = super.live-preview-nvim.overrideAttrs {
checkInputs = with self; [
fzf-lua
mini-pick
snacks-nvim
telescope-nvim
];
nvimSkipModules = [
# Ignore livepreview._spec as it fails nvimRequireCheck.
# This file runs tests on require which unfortunately fails as it attempts to require the base plugin. See https://github.com/brianhuster/live-preview.nvim/blob/5890c4f7cb81a432fd5f3b960167757f1b4d4702/lua/livepreview/_spec.lua#L25
"livepreview._spec"
];
meta.license = lib.licenses.gpl3Only;
};
lspcontainers-nvim = super.lspcontainers-nvim.overrideAttrs {
dependencies = [ self.nvim-lspconfig ];
};
@@ -575,6 +575,7 @@ https://github.com/ldelossa/litee-filetree.nvim/,,
https://github.com/ldelossa/litee-symboltree.nvim/,,
https://github.com/ldelossa/litee.nvim/,,
https://github.com/smjonas/live-command.nvim/,HEAD,
https://github.com/brianhuster/live-preview.nvim/,HEAD,
https://github.com/saecki/live-rename.nvim/,HEAD,
https://github.com/azratul/live-share.nvim/,HEAD,
https://github.com/ggml-org/llama.vim/,HEAD,