my-nvim-config/plugin/lean.lua

14 lines
378 B
Lua
Raw Normal View History

2024-03-13 14:07:20 -05:00
require('lean').setup{
abbreviations = { builtin = true },
mappings = true,
}
-- -- Update error messages even while you're typing in insert mode
-- vim.lsp.handlers["textDocument/publishDiagnostics"] = vim.lsp.with(
-- vim.lsp.diagnostic.on_publish_diagnostics, {
-- underline = true,
-- virtual_text = { spacing = 4 },
-- update_in_insert = true,
-- }
-- )