17 lines
253 B
Lua
17 lines
253 B
Lua
local Util = require("lazy.util")
|
|
|
|
---@class PluginLspOpts
|
|
local opts = {
|
|
diagnostics = {
|
|
underline = true,
|
|
}
|
|
}
|
|
|
|
local configFn = function(_, opts)
|
|
Util.format.register(Util.lsp.formatter())
|
|
end
|
|
|
|
return {
|
|
opts = opts,
|
|
config = configFn,
|
|
}
|