Files
sydnix/modules/home/users/msyds/emacs/lisp/syd/tabs.el
T
2026-09-02 07:55:33 -06:00

12 lines
220 B
EmacsLisp

;;; -*- lexical-binding: t -*-
(require 'syd/base)
;; Tabs, not spaces.
(setq-default indent-tabs-mode nil)
(setq-default tab-width 2)
(use-package kakapo-mode
:hook ((prog-mode . kakapo-mode)))
(provide 'syd/tabs)