return { { 'nvimtools/none-ls.nvim', dependencies = { { 'davidmh/cspell.nvim', }, }, config = function () local cspell = require('cspell') require('null-ls').setup { sources = { cspell.diagnostics, cspell.code_actions, }, should_attach = function(bufnr) local bufname = vim.api.nvim_buf_get_name(bufnr) return not bufname == 'gen.nvim' end, } end, } }