From bca41929691763b6cf1d24ea95cf266a60657385 Mon Sep 17 00:00:00 2001 From: Drew Galbraith Date: Fri, 27 Dec 2024 19:55:15 -0800 Subject: [PATCH] Don't extra highlight scope-level indent. --- lua/plugins/snacks.lua | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 lua/plugins/snacks.lua diff --git a/lua/plugins/snacks.lua b/lua/plugins/snacks.lua new file mode 100644 index 0000000..0a970b3 --- /dev/null +++ b/lua/plugins/snacks.lua @@ -0,0 +1,13 @@ +return { + { + "folke/snacks.nvim", + opts = { + indent = { + scope = { + -- Don't enable extra highlighting at the scope level. + enabled = false, + }, + }, + }, + }, +}