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 Jul 21, 2024
1 parent c405d3f commit b36d84d
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 b36d84d

Please sign in to comment.