Dotfiles_nvim/lua/toolchain/generic.lua

14 lines
235 B
Lua
Raw Permalink Normal View History

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