mason-bridge.nvim icon indicating copy to clipboard operation
mason-bridge.nvim copied to clipboard

Automatically register linters and formatters installed in mason.nvim

Results 2 mason-bridge.nvim issues
Sort by recently updated
recently updated
newest added

This snippet is present in [mason-null-ls](https://github.com/jay-babu/mason-null-ls.nvim)/[none-ls-autoload.nvim](https://github.com/Zeioth/none-ls-autoload.nvim) and maybe we could use it here too: ```lua -- Extra feature: Also register source on mason package installed. require('mason-registry'):on( 'package:install:success', vim.schedule_wrap(function(pkg) get_none_ls_source_name(pkg.name):if_present(load_source) end)...

EDIT: maybe I don't understand "lazy" because if I add a timer it works nvim-lint ``` return { "mfussenegger/nvim-lint", priority = 0, dependencies = { "frostplexx/mason-bridge.nvim", }, config = function()...