;;; -*- lexical-binding: t -*- ;; ;; this file: ;; https://dataswamp.org/~incal/emacs-init/tabs.el (defun untab-all () (unless (member major-mode '(emacs-lisp-mode emacs-news-mode makefile-gmake-mode makefile-mode) ) ; exceptions (untabify (point-min) (point-max))) nil) ; "did not write buffer to disk" (setq-default tab-width 3) (setq-default indent-tabs-mode nil) (provide 'tabs)