mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-14 21:49:34 +03:00
vimPlugins.astroui: init at 2024-12-23
This commit is contained in:
parent
d4797eb110
commit
173f27f7d9
3 changed files with 23 additions and 1 deletions
|
@ -785,6 +785,18 @@ final: prev:
|
||||||
meta.homepage = "https://github.com/AstroNvim/astrotheme/";
|
meta.homepage = "https://github.com/AstroNvim/astrotheme/";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
astroui = buildVimPlugin {
|
||||||
|
pname = "astroui";
|
||||||
|
version = "2024-12-23";
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "AstroNvim";
|
||||||
|
repo = "astroui";
|
||||||
|
rev = "81ddd0315ac4b260a4563a00be943992901ae5e5";
|
||||||
|
sha256 = "1qv9ny98wxyjdyzsw5gmn4wfsklrl01m27hxaba0mypirjr0kv1r";
|
||||||
|
};
|
||||||
|
meta.homepage = "https://github.com/AstroNvim/astroui/";
|
||||||
|
};
|
||||||
|
|
||||||
async-vim = buildVimPlugin {
|
async-vim = buildVimPlugin {
|
||||||
pname = "async.vim";
|
pname = "async.vim";
|
||||||
version = "2022-04-04";
|
version = "2022-04-04";
|
||||||
|
|
|
@ -148,9 +148,18 @@ in
|
||||||
};
|
};
|
||||||
|
|
||||||
astrotheme = super.astrotheme.overrideAttrs {
|
astrotheme = super.astrotheme.overrideAttrs {
|
||||||
nvimRequireCheck = "astrotheme";
|
nvimSkipModule = [
|
||||||
|
# attempt to index local 'c' (a nil value)
|
||||||
|
"astrotheme.groups.plugins.flash"
|
||||||
|
"astrotheme.groups.plugins.todo-comments"
|
||||||
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
astroui = super.astroui.overrideAttrs (oa: {
|
||||||
|
# Readme states that astrocore is an optional dependency
|
||||||
|
nativeCheckInputs = oa.nativeCheckInputs ++ [ self.astrocore ];
|
||||||
|
});
|
||||||
|
|
||||||
asyncrun-vim = super.asyncrun-vim.overrideAttrs {
|
asyncrun-vim = super.asyncrun-vim.overrideAttrs {
|
||||||
nvimSkipModule = [
|
nvimSkipModule = [
|
||||||
# vim plugin with optional toggleterm integration
|
# vim plugin with optional toggleterm integration
|
||||||
|
|
|
@ -64,6 +64,7 @@ https://github.com/otavioschwanck/arrow.nvim/,,
|
||||||
https://github.com/AstroNvim/astrocore/,HEAD,
|
https://github.com/AstroNvim/astrocore/,HEAD,
|
||||||
https://github.com/AstroNvim/astrolsp/,HEAD,
|
https://github.com/AstroNvim/astrolsp/,HEAD,
|
||||||
https://github.com/AstroNvim/astrotheme/,,
|
https://github.com/AstroNvim/astrotheme/,,
|
||||||
|
https://github.com/AstroNvim/astroui/,HEAD,
|
||||||
https://github.com/prabirshrestha/async.vim/,,
|
https://github.com/prabirshrestha/async.vim/,,
|
||||||
https://github.com/prabirshrestha/asyncomplete-buffer.vim/,HEAD,
|
https://github.com/prabirshrestha/asyncomplete-buffer.vim/,HEAD,
|
||||||
https://github.com/prabirshrestha/asyncomplete-file.vim/,HEAD,
|
https://github.com/prabirshrestha/asyncomplete-file.vim/,HEAD,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue