Skip to content

Commit

Permalink
Make conform.nvim be lazy-loadable again
Browse files Browse the repository at this point in the history
The PR that disabled lazy loading (nvim-lua#818) was to fix plugin not being
loaded before write. This sets up lazy to load conform before write.
  • Loading branch information
VlaDexa committed Jun 10, 2024
1 parent 5aeddfd commit 87d8237
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -627,7 +627,8 @@ require('lazy').setup({

{ -- Autoformat
'stevearc/conform.nvim',
lazy = false,
event = { 'BufWritePre' },
cmd = { 'ConformInfo' },
keys = {
{
'<leader>f',
Expand Down

0 comments on commit 87d8237

Please sign in to comment.