haskell-indentation-mode
には、インデント オフセットをカスタマイズするために回すことができるいくつかのノブがあります。
haskell-indentation-layout-offset
haskell-indentation-starter-offset
haskell-indentation-left-offset
haskell-indentation-ifte-offset
haskell-indentation-where-pre-offset
haskell-indentation-where-post-offset
これらはすべてカスタマイズ変数であるためM-x customize-option RET
、それらのいずれかを実行およびカスタマイズできます。または、必要に応じてプログラムで:
(custom-set-variables
;; Customization related to indentation.
'(haskell-indentation-layout-offset 4)
'(haskell-indentation-starter-offset 4)
'(haskell-indentation-left-offset 4)
'(haskell-indentation-where-pre-offset 4)
'(haskell-indentation-where-post-offset 4)
)