From 3939944393a4b0428f77b8d76a7d7706177711c1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sergio=20La=C3=ADn?= Date: Mon, 29 Jan 2024 10:12:29 +0100 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20feat(nvim):=20disable=20indent=20bl?= =?UTF-8?q?anline=20on=20zen=20mode?= 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 9405c863..50bc331e 100644 --- a/.config/nvim/lua/plugins/extras/ui/zen-mode.lua +++ b/.config/nvim/lua/plugins/extras/ui/zen-mode.lua @@ -17,6 +17,7 @@ return { executeCommandIfExists(":ScrollViewDisable") executeCommandIfExists(":LspLensOff") executeCommandIfExists(":NvimContextVtDisable") + executeCommandIfExists(":IBLDisable") Util.toggle.inlay_hints() executeCommandIfExists(":Gitsigns toggle_current_line_blame") end, @@ -26,6 +27,7 @@ return { executeCommandIfExists(":ScrollViewEnable") executeCommandIfExists(":LspLensOn") executeCommandIfExists(":NvimContextVtEnable") + executeCommandIfExists(":IBLEnable") Util.toggle.inlay_hints() executeCommandIfExists(":Gitsigns toggle_current_line_blame") end,