fix(emacs): EXPAND TABS

This commit is contained in:
2026-03-17 11:42:48 -06:00
parent 077a709f65
commit 425f502bba
2 changed files with 8 additions and 0 deletions

View File

@@ -64,5 +64,6 @@
syd/eshell
syd/treesit
syd/grammatical-framework
syd/tabs
syd/lsp
syd/custom))

View File

@@ -0,0 +1,7 @@
;;; -*- lexical-binding: t -*-
(require 'syd/base)
;; Disable tabs by default.
(setq-default indent-tabs-mode nil)
(provide 'syd/tabs)