Skip to content

Commit

Permalink
Make superbol-mode disable tabs in indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
nberth committed Jul 5, 2023
1 parent e7f303c commit 49cd5e5
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions emacs/superbol-mode.el
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,9 @@ extensions."
(set (make-local-variable 'comment-start) "*>")
(set (make-local-variable 'comment-end) "")

;; Forbid tabs in indentation (for now, that's a limitation of Superbol)
(set (make-local-variable 'indent-tabs-mode) nil)

;; Start the LSP client
(lsp))

Expand Down

0 comments on commit 49cd5e5

Please sign in to comment.