Skip to content

Commit 173f27f

Browse files
committed
vimPlugins.astroui: init at 2024-12-23
1 parent d4797eb commit 173f27f

File tree

3 files changed

+23
-1
lines changed

3 files changed

+23
-1
lines changed

pkgs/applications/editors/vim/plugins/generated.nix

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -785,6 +785,18 @@ final: prev:
785785
meta.homepage = "https://github.com/AstroNvim/astrotheme/";
786786
};
787787

788+
astroui = buildVimPlugin {
789+
pname = "astroui";
790+
version = "2024-12-23";
791+
src = fetchFromGitHub {
792+
owner = "AstroNvim";
793+
repo = "astroui";
794+
rev = "81ddd0315ac4b260a4563a00be943992901ae5e5";
795+
sha256 = "1qv9ny98wxyjdyzsw5gmn4wfsklrl01m27hxaba0mypirjr0kv1r";
796+
};
797+
meta.homepage = "https://github.com/AstroNvim/astroui/";
798+
};
799+
788800
async-vim = buildVimPlugin {
789801
pname = "async.vim";
790802
version = "2022-04-04";

pkgs/applications/editors/vim/plugins/overrides.nix

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,9 +148,18 @@ in
148148
};
149149

150150
astrotheme = super.astrotheme.overrideAttrs {
151-
nvimRequireCheck = "astrotheme";
151+
nvimSkipModule = [
152+
# attempt to index local 'c' (a nil value)
153+
"astrotheme.groups.plugins.flash"
154+
"astrotheme.groups.plugins.todo-comments"
155+
];
152156
};
153157

158+
astroui = super.astroui.overrideAttrs (oa: {
159+
# Readme states that astrocore is an optional dependency
160+
nativeCheckInputs = oa.nativeCheckInputs ++ [ self.astrocore ];
161+
});
162+
154163
asyncrun-vim = super.asyncrun-vim.overrideAttrs {
155164
nvimSkipModule = [
156165
# vim plugin with optional toggleterm integration

pkgs/applications/editors/vim/plugins/vim-plugin-names

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,7 @@ https://github.com/otavioschwanck/arrow.nvim/,,
6464
https://github.com/AstroNvim/astrocore/,HEAD,
6565
https://github.com/AstroNvim/astrolsp/,HEAD,
6666
https://github.com/AstroNvim/astrotheme/,,
67+
https://github.com/AstroNvim/astroui/,HEAD,
6768
https://github.com/prabirshrestha/async.vim/,,
6869
https://github.com/prabirshrestha/asyncomplete-buffer.vim/,HEAD,
6970
https://github.com/prabirshrestha/asyncomplete-file.vim/,HEAD,

0 commit comments

Comments
 (0)