Dotfiles_nvim/lua/toolchain/generic.lua
2024-09-08 01:50:39 +02:00

13 lines
235 B
Lua

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