feat(nvim): add ccc to the zen mode hooks

This commit is contained in:
Sergio Laín 2024-03-05 17:08:53 +01:00
parent 6ba850744c
commit f592e5ed0c
No known key found for this signature in database
GPG key ID: 14C9B8080681777B

View file

@ -20,6 +20,7 @@ return {
executeCommandIfExists(":IBLDisable") executeCommandIfExists(":IBLDisable")
Util.toggle.inlay_hints() Util.toggle.inlay_hints()
executeCommandIfExists(":Gitsigns toggle_current_line_blame") executeCommandIfExists(":Gitsigns toggle_current_line_blame")
executeCommandIfExists(":CccHighlighterDisable")
end, end,
on_close = function() on_close = function()
vim.opt.laststatus = 3 vim.opt.laststatus = 3
@ -30,6 +31,7 @@ return {
executeCommandIfExists(":IBLEnable") executeCommandIfExists(":IBLEnable")
Util.toggle.inlay_hints() Util.toggle.inlay_hints()
executeCommandIfExists(":Gitsigns toggle_current_line_blame") executeCommandIfExists(":Gitsigns toggle_current_line_blame")
executeCommandIfExists(":CccHighlighterEnable")
end, end,
}, },
}, },