Make conform.nvim be lazy-loadable again

The PR that disabled lazy loading (#818) was to fix plugin not being
loaded before write. This sets up lazy to load conform before write.
This commit is contained in:
Vladislav 2024-06-10 02:38:06 +02:00
parent 5aeddfdd5d
commit 87d8237c75
No known key found for this signature in database
GPG Key ID: 07A1CCBD643CA257
1 changed files with 2 additions and 1 deletions

View File

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