2022-04-04 01:10:26 +02:00
|
|
|
local lspconfig = require("my.plugins.lspconfig")
|
|
|
|
local M = {}
|
|
|
|
|
|
|
|
function M.setup()
|
2022-09-09 00:16:11 +02:00
|
|
|
require('lean').setup {
|
|
|
|
abbreviations = { builtin = true, cmp = true },
|
|
|
|
lsp = { on_attach = lspconfig.on_attach },
|
|
|
|
lsp3 = { on_attach = lspconfig.on_attach },
|
|
|
|
mappings = true
|
|
|
|
}
|
2022-04-04 01:10:26 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
return M
|