Make conform.nvim be lazy-loadable again (#977)
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:
parent
42a7c1afde
commit
78a82a80e4
1 changed files with 2 additions and 0 deletions
2
init.lua
2
init.lua
|
@ -742,6 +742,8 @@ require('lazy').setup({
|
||||||
tag = 'v7.1.0',
|
tag = 'v7.1.0',
|
||||||
pin = true,
|
pin = true,
|
||||||
lazy = false,
|
lazy = false,
|
||||||
|
event = { 'BufWritePre' },
|
||||||
|
cmd = { 'ConformInfo' },
|
||||||
keys = {
|
keys = {
|
||||||
{
|
{
|
||||||
'<leader>f',
|
'<leader>f',
|
||||||
|
|
Loading…
Reference in a new issue