From f592e5ed0ca25b5d82cf484423eed49c7fae738c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sergio=20La=C3=ADn?= Date: Tue, 5 Mar 2024 17:08:53 +0100 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20feat(nvim):=20add=20ccc=20to=20the?= =?UTF-8?q?=20zen=20mode=20hooks?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .config/nvim/lua/plugins/extras/ui/zen-mode.lua | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.config/nvim/lua/plugins/extras/ui/zen-mode.lua b/.config/nvim/lua/plugins/extras/ui/zen-mode.lua index 50bc331e..0dd42202 100644 --- a/.config/nvim/lua/plugins/extras/ui/zen-mode.lua +++ b/.config/nvim/lua/plugins/extras/ui/zen-mode.lua @@ -20,6 +20,7 @@ return { executeCommandIfExists(":IBLDisable") Util.toggle.inlay_hints() executeCommandIfExists(":Gitsigns toggle_current_line_blame") + executeCommandIfExists(":CccHighlighterDisable") end, on_close = function() vim.opt.laststatus = 3 @@ -30,6 +31,7 @@ return { executeCommandIfExists(":IBLEnable") Util.toggle.inlay_hints() executeCommandIfExists(":Gitsigns toggle_current_line_blame") + executeCommandIfExists(":CccHighlighterEnable") end, }, },