Make conform.nvim be lazy-loadable again ()

The PR that disabled lazy loading () was to fix plugin not being
loaded before write. This sets up lazy to load conform before write.
This commit is contained in:
Vladislav Grechannik 2024-07-21 22:34:17 +02:00 committed by GitHub
parent c405d3fd4f
commit b36d84ddf0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 1 deletions

View File

@ -626,7 +626,8 @@ require('lazy').setup({
{ -- Autoformat { -- Autoformat
'stevearc/conform.nvim', 'stevearc/conform.nvim',
lazy = false, event = { 'BufWritePre' },
cmd = { 'ConformInfo' },
keys = { keys = {
{ {
'<leader>f', '<leader>f',