From 212669d7a129517b839b6ebd57d9a4a1c5a6093b Mon Sep 17 00:00:00 2001 From: beeb5k Date: Tue, 16 Jun 2026 21:04:35 +0530 Subject: Disable blink-indent for nix and markdown files --- lua/bee/plugins/ui.lua | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/lua/bee/plugins/ui.lua b/lua/bee/plugins/ui.lua index 5b1dedd..55224cd 100644 --- a/lua/bee/plugins/ui.lua +++ b/lua/bee/plugins/ui.lua @@ -59,6 +59,17 @@ return { "blink.indent", auto_enable = true, event = "DeferredUIEnter", + before = function() + vim.api.nvim_create_autocmd("FileType", { + pattern = { + "markdown", + "nix", + }, + callback = function(args) + vim.b[args.buf].indent_guide = false + end, + }) + end, after = function(_) require("blink.indent").setup({ static = { -- cgit v1.3.1