Dotfiles_nvim/lua/toolchain/generic.lua
2024-09-07 20:39:22 +02:00

13 lines
237 B
Lua

local T = require('toolchain')
local M = {}
M.setup = function()
T.add_null_ls_module(function(null_ls)
return {
-- Actions
null_ls.builtins.code_actions.refactoring,
}
end)
end
return M