From 9e79cd2347a9b2bec300aea4fffc097f56ec6d97 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A9ana=20=E6=B1=9F?= Date: Sat, 8 Nov 2025 10:20:00 +0800 Subject: [PATCH] nvim/haskell: smartindent should be scoped to buffer --- .config/nvim/ftplugin/haskell.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.config/nvim/ftplugin/haskell.lua b/.config/nvim/ftplugin/haskell.lua index ee1dba9a..ddc57c09 100644 --- a/.config/nvim/ftplugin/haskell.lua +++ b/.config/nvim/ftplugin/haskell.lua @@ -5,4 +5,4 @@ vim.bo.shiftwidth = 2 vim.bo.expandtab = true -- useful for CPP extension -vim.o.smartindent = true +vim.bo.smartindent = true