nvim/lua/plugins/protobuf.lua

13 lines
317 B
Lua
Raw Normal View History

2024-06-17 15:22:39 +07:00
return {
{
"nvimtools/none-ls.nvim",
opts = function(_, opts)
2024-11-15 21:49:51 +07:00
local nls = require "null-ls"
2024-06-17 15:22:39 +07:00
opts.sources = vim.list_extend(opts.sources or {}, {
nls.builtins.diagnostics.buf,
nls.builtins.formatting.buf,
})
end,
},
}