feat(nvim): disable indent blanline on zen mode

This commit is contained in:
Sergio Laín 2024-01-29 10:12:29 +01:00
parent 656eadbb1d
commit 3939944393
No known key found for this signature in database
GPG key ID: 14C9B8080681777B

View file

@ -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,