2

How can I configure ~/.emacs so that I indent how nano does by default?

  • Uses a tab character instead of 5 spaces
  • I can add as many tabs to a line as I please
holmrekR
  • 41
  • 3

1 Answers1

2

I added the following to ~/.emacs:

(setq-default indent-tabs-mode t)
(setq backward-delete-char-untabify-method nil)
(setq indent-tabs-mode t)

(defun my-insert-tab-char ()
"Insert a tab char. (ASCII 9, \t)"
(interactive)
(insert "\t"))
(global-set-key (kbd "TAB") 'my-insert-tab-char) ; same as Ctrl+i
holmrekR
  • 41
  • 3