Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions pkgs/LazyVim.nix
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
{
lib,
stdenv,
callPackage,
julia,
lazy-nvim-nix,
lazygit,
lazy-nvim ? lazy-nvim-nix.lazy-nvim,
Expand Down Expand Up @@ -90,9 +88,11 @@ in
inherit neovim;
pluginName = "mason";
loadLazyPluginName = "mason.nvim";
ignoreLines = lib.lists.optional (
!lib.meta.availableOn stdenv.hostPlatform julia
) "WARNING julia: not available";
ignoreLines = [
"WARNING java: not available"
"WARNING javac: not available"
"WARNING julia: not available"
];
};

checkhealth-noice = neovim-checkhealth.override {
Expand Down
11 changes: 5 additions & 6 deletions pkgs/tests/mason-nvim-checkhealth.nix
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
{
lib,
callPackage,
stdenv,
lazy-nvim-nix,
julia,
}:
callPackage ./neovim-checkhealth.nix {
neovim = lazy-nvim-nix.lazy-nvim.override {
Expand All @@ -12,7 +9,9 @@ callPackage ./neovim-checkhealth.nix {
};
pluginName = "mason";
loadLazyPluginName = "mason.nvim";
ignoreLines = lib.lists.optional (
!lib.meta.availableOn stdenv.hostPlatform julia
) "WARNING julia: not available";
ignoreLines = [
"WARNING java: not available"
"WARNING javac: not available"
"WARNING julia: not available"
];
}
6 changes: 1 addition & 5 deletions plugins.nix
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,6 @@
go,
gzip,
imagemagick,
jdk,
julia,
lazygit,
mermaid-cli,
nodePackages,
Expand Down Expand Up @@ -247,7 +245,6 @@ let
gnutar
go
gzip
jdk
nodePackages.nodejs
php83
php83Packages.composer
Expand All @@ -256,8 +253,7 @@ let
unzip
wget
yq-go
]
++ (lib.lists.optional (lib.meta.availableOn stdenv.hostPlatform julia) julia);
];
};

"nvim-treesitter" = plugins."nvim-treesitter" // {
Expand Down