You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

33 lines
667 B

return {
-- lang server installations
{
'williamboman/mason.nvim',
dependencies = {
{
'jose-elias-alvarez/null-ls.nvim',
config = function()
require("null-ls").setup({
sources = {
require("null-ls").builtins.formatting.black,
require("null-ls").builtins.formatting.mdformat
}
})
end
},
{
'jay-babu/mason-null-ls.nvim',
opts = {
automatic_installation = true,
ensure_installed = { "black", "mdformat" }
}
},
},
opts = {
ui = {
icons = Install_signs
}
}
}
}