This commit is contained in:
mint 2026-06-04 20:25:32 +03:00 committed by GitHub
commit b7befb2706
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -0,0 +1,29 @@
return {
recommended = function()
return LazyVim.extras.wants({
ft = "just",
root = { "justfile", ".justfile" },
})
end,
{
"nvim-treesitter/nvim-treesitter",
opts = { ensure_installed = { "just" } },
},
{
"neovim/nvim-lspconfig",
opts = {
servers = {
just = {},
},
},
},
{
"stevearc/conform.nvim",
optional = true,
opts = {
formatters_by_ft = {
just = { "just" },
},
},
},
}