Skip to content

Commit ffe7a77

Browse files
committed
Make superbol-mode disable tabs in indentation
1 parent f33b3a7 commit ffe7a77

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

emacs/superbol-mode.el

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,9 @@ extensions."
3939
(set (make-local-variable 'comment-start) "*>")
4040
(set (make-local-variable 'comment-end) "")
4141

42+
;; Forbid tabs in indentation (for now, that's a limitation of Superbol)
43+
(set (make-local-variable 'indent-tabs-mode) nil)
44+
4245
;; Start the LSP client
4346
(lsp))
4447

0 commit comments

Comments
 (0)