Saner indentation

This commit is contained in:
qorg11 2020-11-30 11:38:11 +01:00
parent fe15d1dbf2
commit badb1cc67a
No known key found for this signature in database
GPG key ID: 343FC20A4ACA62B9

View file

@ -90,22 +90,12 @@
* Autoindentation * Autoindentation
C-c n for indent-buffer. I don't use the rest. C-c n for indent-buffer. I don't use the rest.
#+BEGIN_SRC emacs-lisp #+BEGIN_SRC emacs-lisp
(setq-default tab-width 5)
(defun untabify-buffer () (defun indent-buffer ()
(interactive) (interactive)
(untabify (point-min) (point-max))) (save-excursion
(indent-region (point-min) (point-max) nil)))
(defun indent-buffer () (global-set-key (kbd "C-c n") 'indent-buffer)
(interactive)
(indent-region (point-min) (point-max)))
(defun cleanup-buffer ()
"Perform a bunch of operations on the whitespace content of a buffer.
Including indent-buffer, which should not be called automatically on save."
(interactive)
(untabify-buffer)
(delete-trailing-whitespace)
(indent-buffer))
#+END_SRC #+END_SRC
* Shorcuts * Shorcuts
@ -247,10 +237,10 @@ Including indent-buffer, which should not be called automatically on save."
#+END_SRC #+END_SRC
** Relative lines ** Relative lines
#+BEGIN_SRC emacs-lisp #+BEGIN_SRC emacs-lisp
(global-display-line-numbers-mode 1) (global-display-line-numbers-mode 1)
(setq display-line-numbers-type 'relative) (setq display-line-numbers-type 'relative)
#+END_SRC #+END_SRC
** Flycheck ** Flycheck
Flycheck is a syntax validator or somehting like that Flycheck is a syntax validator or somehting like that
#+BEGIN_SRC emacs-lisp #+BEGIN_SRC emacs-lisp
@ -499,4 +489,3 @@ Including indent-buffer, which should not be called automatically on save."
[[./screenshot.png]] [[./screenshot.png]]
(add-hook 'prog-mode-hook 'highlight-indent-guides-mode) (add-hook 'prog-mode-hook 'highlight-indent-guides-mode)