Sorixelle / astro-ts-mode

Emacs major mode for Astro templates
GNU General Public License v3.0
13 stars 1 forks source link

Config to set indentation to 4 spaces #8

Open FabriceSalvaire opened 8 months ago

FabriceSalvaire commented 8 months ago
(use-package astro-ts-mode
  :config
  (setq astro-ts-mode-indent-offset 4)
  :init
  (add-hook 'astro-ts-mode-hook (lambda () (setq indent-tabs-mode nil)))
  )