2024-09-07 20:39:22 +02:00
|
|
|
local T = require('toolchain')
|
|
|
|
local M = {}
|
|
|
|
|
2024-09-08 01:50:39 +02:00
|
|
|
function M.setup()
|
2024-09-07 20:39:22 +02:00
|
|
|
T.add_null_ls_module(function(null_ls)
|
|
|
|
return {
|
|
|
|
-- Actions
|
|
|
|
null_ls.builtins.code_actions.refactoring,
|
|
|
|
}
|
|
|
|
end)
|
|
|
|
end
|
|
|
|
|
|
|
|
return M
|