Skip to content

Commit

Permalink
Make conform.nvim be lazy-loadable again (nvim-lua#977)
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 authored and kpollich committed Sep 13, 2024
1 parent d5119b3 commit 20cd330
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 @@ -626,7 +626,8 @@ require('lazy').setup({

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

0 comments on commit 20cd330

Please sign in to comment.