Skip to content

Commit

Permalink
fix(rust): fix missing astrocore import
Browse files Browse the repository at this point in the history
  • Loading branch information
mehalter committed Jan 12, 2024
1 parent a5bc507 commit 5459c88
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lua/astrocommunity/pack/rust/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ return {
"nvim-treesitter/nvim-treesitter",
opts = function(_, opts)
if opts.ensure_installed ~= "all" then
opts.ensure_installed = utils.list_insert_unique(opts.ensure_installed, "rust")
opts.ensure_installed = require("astrocore").list_insert_unique(opts.ensure_installed, "rust")
end
end,
},
Expand Down

0 comments on commit 5459c88

Please sign in to comment.